| 88 | } |
| 89 | |
| 90 | struct BigObject |
| 91 | { |
| 92 | ipl::vector<float> data; |
| 93 | |
| 94 | BigObject(const size_t numElements) : |
| 95 | data(numElements) |
| 96 | {} |
| 97 | }; |
| 98 | |
| 99 | TEST_CASE("make_unique allocations are routed correctly.", "[memory]") |
| 100 | { |
nothing calls this directly
no outgoing calls
no test coverage detected