From e8422002f84dc4313894a5b3136c44a9005081fd Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Sat, 2 Nov 2024 20:45:02 -0500 Subject: Allocator deallocate is void rather than returning FudStatus. --- test/test_utf8.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/test_utf8.cpp') 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(pointer); static_cast(bytes); - return FudStatus::Success; } virtual bool isEqual(const Allocator& rhs) const override final -- cgit v1.2.3