| 22 | class MockAllocator { |
| 23 | public: |
| 24 | static auto GetInstance() -> MockAllocator& { |
| 25 | static MockAllocator instance; |
| 26 | return instance; |
| 27 | } |
| 28 | |
| 29 | auto AlignedAlloc(size_t alignment, size_t size) -> void* { |
| 30 | void* ptr = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected