Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions include/foonathan/memory/memory_pool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,11 @@ namespace foonathan
return arena_.get_allocator();
}

/// \returns If `ptr` is in memory owned by the underlying arena.
bool owns(const void* ptr) const noexcept
{
return arena_.owns(ptr);
}
private:
allocator_info info() const noexcept
{
Expand Down