Skip to content

Commit

Permalink
Merge pull request #258 from bobkocisko/master
Browse files Browse the repository at this point in the history
Fixing annoying unused local variable warning
  • Loading branch information
arximboldi authored May 3, 2023
2 parents d98a68c + e382fea commit 5722567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion immer/heap/cpp_heap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ struct cpp_heap
* `allocate`. One must not use nor deallocate again a memory
* region that once it has been deallocated.
*/
static void deallocate(std::size_t size, void* data)
static void deallocate(std::size_t, void* data)
{
::operator delete(data);
}
Expand Down

0 comments on commit 5722567

Please sign in to comment.