summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2020-08-20 19:29:20 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-08-21 01:50:09 +0200
commit03557e978e7e3a3a87588cc8eba957ef5e3a6302 (patch)
treeb08022d22a3f1aeaf143841628e32265050a1042
parentRemove level of indirection in cChunk storage (diff)
downloadcuberite-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
-rw-r--r--src/Chunk.h2
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) */