diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-06-14 20:46:34 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-06-14 20:46:34 +0200 |
commit | 94c48febd2f596648fc2616a8a577316a219b581 (patch) | |
tree | 3275d163808851c7413cd9abb5f3019788823fda /src/ChunkData.h | |
parent | reverted accedental android changes (diff) | |
download | cuberite-94c48febd2f596648fc2616a8a577316a219b581.tar cuberite-94c48febd2f596648fc2616a8a577316a219b581.tar.gz cuberite-94c48febd2f596648fc2616a8a577316a219b581.tar.bz2 cuberite-94c48febd2f596648fc2616a8a577316a219b581.tar.lz cuberite-94c48febd2f596648fc2616a8a577316a219b581.tar.xz cuberite-94c48febd2f596648fc2616a8a577316a219b581.tar.zst cuberite-94c48febd2f596648fc2616a8a577316a219b581.zip |
Diffstat (limited to 'src/ChunkData.h')
-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; }; |