mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-09 17:48:19 +00:00
fix
This commit is contained in:
parent
ee6ee97da2
commit
1276ee7027
|
@ -17,7 +17,12 @@
|
|||
// The size of buffers obtained follows a geometric progression.
|
||||
class CHeap
|
||||
{
|
||||
std::pmr::monotonic_buffer_resource m_BumpAllocator;
|
||||
#if __has_include(<memory_resource>)
|
||||
std::pmr::monotonic_buffer_resource
|
||||
#else
|
||||
std::experimental::pmr::monotonic_buffer_resource
|
||||
#endif
|
||||
m_BumpAllocator;
|
||||
void Clear();
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue