We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d3df2e commit 3e17e78Copy full SHA for 3e17e78
1 file changed
MemoryPool.cpp
@@ -35,7 +35,7 @@ CPPShift::Memory::MemoryPool::~MemoryPool() {
35
36
while (block_iterator != nullptr) {
37
SMemoryBlockHeader* next_iterator = block_iterator->next;
38
- free(block_iterator);
+ std::free(block_iterator);
39
block_iterator = next_iterator;
40
}
41
0 commit comments