summaryrefslogtreecommitdiff
path: root/source/fud_allocator.cpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-10-25 01:09:10 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-10-25 01:09:10 -0500
commit11968f674a7de34fb7de744598a8086330cd88a3 (patch)
treebe5b885ef47c8ceab50f558c8aef6632fefc94d1 /source/fud_allocator.cpp
parent512d026de016f2720060d264adec02e56123851d (diff)
Get working string formatting for unsigned numbers.
Diffstat (limited to 'source/fud_allocator.cpp')
-rw-r--r--source/fud_allocator.cpp1
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;
}