diff options
author | Mattes D <github@xoft.cz> | 2015-08-18 08:49:39 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-08-18 08:49:39 +0200 |
commit | 5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7 (patch) | |
tree | b14ae581e0680c303466781cc356c2399a6c7990 /src/ChunkMap.cpp | |
parent | Merge pull request #2436 from cuberite/UpdateCompileScript (diff) | |
parent | Some warning fixes (diff) | |
download | cuberite-5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7.tar cuberite-5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7.tar.gz cuberite-5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7.tar.bz2 cuberite-5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7.tar.lz cuberite-5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7.tar.xz cuberite-5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7.tar.zst cuberite-5ea1b9cee17d7fb43a2e118b880cbf74cd9772d7.zip |
Diffstat (limited to 'src/ChunkMap.cpp')
-rw-r--r-- | src/ChunkMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp index 19ffd9b98..aeae8f350 100644 --- a/src/ChunkMap.cpp +++ b/src/ChunkMap.cpp @@ -38,7 +38,7 @@ cChunkMap::cChunkMap(cWorld * a_World) : m_World(a_World), m_Pool( new cListAllocationPool<cChunkData::sChunkSection, 1600>( - std::auto_ptr<cAllocationPool<cChunkData::sChunkSection>::cStarvationCallbacks>( + std::unique_ptr<cAllocationPool<cChunkData::sChunkSection>::cStarvationCallbacks>( new cStarvationCallbacks() ) ) |