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_utf8.cpp | |
parent | 6c7fd1db481ff10a16ecab958c6542784fa60b9c (diff) |
Allocator deallocate is void rather than returning FudStatus.
Diffstat (limited to 'test/test_utf8.cpp')
-rw-r--r-- | test/test_utf8.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_utf8.cpp b/test/test_utf8.cpp index 69a1643..e5cb89a 100644 --- a/test/test_utf8.cpp +++ b/test/test_utf8.cpp @@ -147,11 +147,10 @@ TEST(Utf8Test, Utf8MultiByte) return RetType::okay(data); } - virtual FudStatus deallocate(std::byte* pointer, size_t bytes) override final + virtual void deallocate(std::byte* pointer, size_t bytes) override final { static_cast<void>(pointer); static_cast<void>(bytes); - return FudStatus::Success; } virtual bool isEqual(const Allocator& rhs) const override final |