diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-25 01:09:10 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-25 01:09:10 -0500 |
commit | 11968f674a7de34fb7de744598a8086330cd88a3 (patch) | |
tree | be5b885ef47c8ceab50f558c8aef6632fefc94d1 /source/fud_allocator.cpp | |
parent | 512d026de016f2720060d264adec02e56123851d (diff) |
Get working string formatting for unsigned numbers.
Diffstat (limited to 'source/fud_allocator.cpp')
-rw-r--r-- | source/fud_allocator.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source/fud_allocator.cpp b/source/fud_allocator.cpp index 1e4117a..8daf969 100644 --- a/source/fud_allocator.cpp +++ b/source/fud_allocator.cpp @@ -35,7 +35,6 @@ FudStatus FudAllocator::deallocate(void* pointer, size_t bytes) if (pointer == nullptr || bytes == 0) { return FudStatus::ArgumentInvalid; } - static_cast<void>(bytes); fudFree(pointer); return FudStatus::Success; } |