Skip to content

Commit

Permalink
MemChunker
Browse files Browse the repository at this point in the history
  • Loading branch information
morzhovets committed Jan 8, 2025
1 parent 7ceb06b commit bee8aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/momo/MemPool.h
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ class MemPool : private internal::MemChunker<TParams>
}
while (true)
{
Byte* buffer = GetPrevBuffer(memPool.mFreeBufferHead);
Byte* buffer = Chunker::GetPrevBuffer(memPool.mFreeBufferHead);
if (buffer == nullptr)
break;
Byte* prevBuffer = Chunker::GetPrevBuffer(buffer);
Expand Down

0 comments on commit bee8aae

Please sign in to comment.