diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-06-14 18:57:21 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-06-14 18:57:21 +0200 |
commit | 8bf37f3dd7ff017eedaac427b9291a9335d61efc (patch) | |
tree | f3ce368c042c0c2a1f26b5e49b8b09204fa3d341 /src/ChunkData.cpp | |
parent | Added logging (diff) | |
download | cuberite-8bf37f3dd7ff017eedaac427b9291a9335d61efc.tar cuberite-8bf37f3dd7ff017eedaac427b9291a9335d61efc.tar.gz cuberite-8bf37f3dd7ff017eedaac427b9291a9335d61efc.tar.bz2 cuberite-8bf37f3dd7ff017eedaac427b9291a9335d61efc.tar.lz cuberite-8bf37f3dd7ff017eedaac427b9291a9335d61efc.tar.xz cuberite-8bf37f3dd7ff017eedaac427b9291a9335d61efc.tar.zst cuberite-8bf37f3dd7ff017eedaac427b9291a9335d61efc.zip |
Diffstat (limited to 'src/ChunkData.cpp')
-rw-r--r-- | src/ChunkData.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChunkData.cpp b/src/ChunkData.cpp index 24a2c3e14..a80b1de0f 100644 --- a/src/ChunkData.cpp +++ b/src/ChunkData.cpp @@ -30,9 +30,9 @@ template <typename T> inline bool IsAllValue(const T * a_Array, size_t a_NumElem cChunkData::cChunkData(cAllocationPool<cChunkData::sChunkSection, 1600>& a_Pool) : #if __cplusplus < 201103L // auto_ptr style interface for memory management - m_IsOwner(true) + m_IsOwner(true), #endif -m_Pool(a_Pool) + m_Pool(a_Pool) { for (size_t i = 0; i < NumSections; i++) { |