diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-08-28 15:36:23 +0200 |
---|---|---|
committer | peterbell10 <peterbell10@live.co.uk> | 2017-08-28 15:36:23 +0200 |
commit | 96ce8414175e600285f2d965844bb141c5a9cf5c (patch) | |
tree | ee815a1f4a84e69d8858e1957f063da63b76b41c /src/Cuboid.h | |
parent | cCuboid: restore default copy construct and assign. (diff) | |
download | cuberite-96ce8414175e600285f2d965844bb141c5a9cf5c.tar cuberite-96ce8414175e600285f2d965844bb141c5a9cf5c.tar.gz cuberite-96ce8414175e600285f2d965844bb141c5a9cf5c.tar.bz2 cuberite-96ce8414175e600285f2d965844bb141c5a9cf5c.tar.lz cuberite-96ce8414175e600285f2d965844bb141c5a9cf5c.tar.xz cuberite-96ce8414175e600285f2d965844bb141c5a9cf5c.tar.zst cuberite-96ce8414175e600285f2d965844bb141c5a9cf5c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Cuboid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Cuboid.h b/src/Cuboid.h index 73edd31d9..acb19d46b 100644 --- a/src/Cuboid.h +++ b/src/Cuboid.h @@ -16,7 +16,7 @@ public: cCuboid(const Vector3i & a_p1, const Vector3i & a_p2) : p1(a_p1), p2(a_p2) {} cCuboid(int a_X1, int a_Y1, int a_Z1) : p1(a_X1, a_Y1, a_Z1), p2(a_X1, a_Y1, a_Z1) {} - #if 0 // tolua isn't aware of implicitly generated copy constructors + #ifdef TOLUA_EXPOSITION // tolua isn't aware of implicitly generated copy constructors cCuboid(const cCuboid & a_Cuboid); #endif |