cChunk's deleted copy constructor needs const
This commit is contained in:
parent
d1b0d0f5b5
commit
03557e978e
@ -66,7 +66,7 @@ public:
|
|||||||
cChunkMap * a_ChunkMap, cWorld * a_World, // Parent objects
|
cChunkMap * a_ChunkMap, cWorld * a_World, // Parent objects
|
||||||
cAllocationPool<cChunkData::sChunkSection> & a_Pool
|
cAllocationPool<cChunkData::sChunkSection> & a_Pool
|
||||||
);
|
);
|
||||||
cChunk(cChunk & other) = delete;
|
cChunk(const cChunk & Other) = delete;
|
||||||
~cChunk();
|
~cChunk();
|
||||||
|
|
||||||
/** Returns true iff the chunk block data is valid (loaded / generated) */
|
/** Returns true iff the chunk block data is valid (loaded / generated) */
|
||||||
|
Loading…
Reference in New Issue
Block a user