summaryrefslogtreecommitdiffstats
path: root/source/ChunkDef.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-14 09:00:24 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-14 09:00:24 +0100
commite18e539ad263d24e59d2930e51a76abc18e74bad (patch)
treedc267a26ba396946ddcf21c2d10db05be5dc889f /source/ChunkDef.h
parentAnvilStats: Added module for counting water and lava springs. (diff)
downloadcuberite-e18e539ad263d24e59d2930e51a76abc18e74bad.tar
cuberite-e18e539ad263d24e59d2930e51a76abc18e74bad.tar.gz
cuberite-e18e539ad263d24e59d2930e51a76abc18e74bad.tar.bz2
cuberite-e18e539ad263d24e59d2930e51a76abc18e74bad.tar.lz
cuberite-e18e539ad263d24e59d2930e51a76abc18e74bad.tar.xz
cuberite-e18e539ad263d24e59d2930e51a76abc18e74bad.tar.zst
cuberite-e18e539ad263d24e59d2930e51a76abc18e74bad.zip
Diffstat (limited to 'source/ChunkDef.h')
-rw-r--r--source/ChunkDef.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/ChunkDef.h b/source/ChunkDef.h
index 927957e07..1e368b50b 100644
--- a/source/ChunkDef.h
+++ b/source/ChunkDef.h
@@ -538,8 +538,9 @@ public:
} ;
// Illegal in C++03: typedef std::list< cCoordWithData<X> > cCoordWithDataList<X>;
-typedef cCoordWithData<int> cCoordWithInt;
-typedef std::list<cCoordWithInt> cCoordWithIntList;
+typedef cCoordWithData<int> cCoordWithInt;
+typedef std::list<cCoordWithInt> cCoordWithIntList;
+typedef std::vector<cCoordWithInt> cCoordWithIntVector;