diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-11-02 20:45:02 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-11-02 20:45:02 -0500 |
commit | e8422002f84dc4313894a5b3136c44a9005081fd (patch) | |
tree | b41633d9f759306fe9c7c01e209780222b47f5df /test/test_common.cpp | |
parent | 6c7fd1db481ff10a16ecab958c6542784fa60b9c (diff) |
Allocator deallocate is void rather than returning FudStatus.
Diffstat (limited to 'test/test_common.cpp')
-rw-r--r-- | test/test_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_common.cpp b/test/test_common.cpp index 778b4b5..07a0088 100644 --- a/test/test_common.cpp +++ b/test/test_common.cpp @@ -32,7 +32,7 @@ std::byte* MockFudAlloc::operator()(size_t size) void MockFudDealloc::operator()(std::byte* pointer) { - return free(pointer); + free(pointer); } MockFudAlloc globalDefaultMockAlloc{}; |