diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-08-20 19:29:20 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-08-21 01:50:09 +0200 |
commit | 03557e978e7e3a3a87588cc8eba957ef5e3a6302 (patch) | |
tree | b08022d22a3f1aeaf143841628e32265050a1042 /src | |
parent | Remove level of indirection in cChunk storage (diff) | |
download | cuberite-03557e978e7e3a3a87588cc8eba957ef5e3a6302.tar cuberite-03557e978e7e3a3a87588cc8eba957ef5e3a6302.tar.gz cuberite-03557e978e7e3a3a87588cc8eba957ef5e3a6302.tar.bz2 cuberite-03557e978e7e3a3a87588cc8eba957ef5e3a6302.tar.lz cuberite-03557e978e7e3a3a87588cc8eba957ef5e3a6302.tar.xz cuberite-03557e978e7e3a3a87588cc8eba957ef5e3a6302.tar.zst cuberite-03557e978e7e3a3a87588cc8eba957ef5e3a6302.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Chunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index 8c236045e..a9b5bb99a 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -66,7 +66,7 @@ public: cChunkMap * a_ChunkMap, cWorld * a_World, // Parent objects cAllocationPool<cChunkData::sChunkSection> & a_Pool ); - cChunk(cChunk & other) = delete; + cChunk(const cChunk & Other) = delete; ~cChunk(); /** Returns true iff the chunk block data is valid (loaded / generated) */ |