diff options
Diffstat (limited to '')
-rw-r--r-- | src/ChunkData.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChunkData.h b/src/ChunkData.h index 9dee78ad0..e3b36c581 100644 --- a/src/ChunkData.h +++ b/src/ChunkData.h @@ -37,7 +37,7 @@ public: struct sChunkSection; - cChunkData(cAllocationPool<cChunkData::sChunkSection, 1600> & a_Pool); + cChunkData(cAllocationPool<cChunkData::sChunkSection> & a_Pool); ~cChunkData(); #if __cplusplus < 201103L @@ -122,7 +122,7 @@ private: /** Sets the data in the specified section to their default values. */ void ZeroSection(sChunkSection * a_Section) const; - cAllocationPool<cChunkData::sChunkSection, 1600> & m_Pool; + cAllocationPool<cChunkData::sChunkSection> & m_Pool; }; |