summaryrefslogtreecommitdiffstats
path: root/src/ChunkData.cpp
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-05-24 15:09:51 +0200
committerTycho <work.tycho+git@gmail.com>2014-05-24 15:09:51 +0200
commit944d29c0ae3929471a11ea11aa98441bc31f4d7d (patch)
treed2d083b4d40a7d30967d4b63ab1b67c1aba605c5 /src/ChunkData.cpp
parentMoved accessors to cpp file (diff)
downloadcuberite-944d29c0ae3929471a11ea11aa98441bc31f4d7d.tar
cuberite-944d29c0ae3929471a11ea11aa98441bc31f4d7d.tar.gz
cuberite-944d29c0ae3929471a11ea11aa98441bc31f4d7d.tar.bz2
cuberite-944d29c0ae3929471a11ea11aa98441bc31f4d7d.tar.lz
cuberite-944d29c0ae3929471a11ea11aa98441bc31f4d7d.tar.xz
cuberite-944d29c0ae3929471a11ea11aa98441bc31f4d7d.tar.zst
cuberite-944d29c0ae3929471a11ea11aa98441bc31f4d7d.zip
Diffstat (limited to 'src/ChunkData.cpp')
-rw-r--r--src/ChunkData.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/ChunkData.cpp b/src/ChunkData.cpp
index 162803292..79029f0cf 100644
--- a/src/ChunkData.cpp
+++ b/src/ChunkData.cpp
@@ -1,5 +1,9 @@
+#ifdef TEST_GLOBALS
+#include "TestGlobals.h"
+#else
#include "Globals.h"
+#endif
#include "ChunkData.h"
cChunkData::cChunkData()
@@ -39,7 +43,7 @@ cChunkData::~cChunkData()
other.IsOwner = false;
}
- cChunkData::cChunkData& operator=(const cChunkData& other)
+ cChunkData& cChunkData::operator=(const cChunkData& other)
{
if (&other != this)
{
@@ -71,7 +75,7 @@ cChunkData::~cChunkData()
}
}
- cChunkData::cChunkData& operator=(cChunkData&& other)
+ cChunkData& cChunkData::operator=(cChunkData&& other)
{
if (&other != this)
{
@@ -230,7 +234,7 @@ NIBBLETYPE cChunkData::GetSkyLight(int a_RelX, int a_RelY, int a_RelZ) const
return 0;
}
-cChunkData cChunkData::cChunkData::Copy() const
+cChunkData cChunkData::Copy() const
{
cChunkData copy;
for (size_t i = 0; i < CHUNK_SECTION_COUNT; i++)