diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2017-08-30 16:04:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-30 16:04:09 +0200 |
commit | da0778dfaa6f82634b91cf981710ecc7809529ae (patch) | |
tree | a5f8c532a5f0ec50c1a2957395f2941cc070c226 /src/Cuboid.h | |
parent | Protocol Spawn Position Should Use LastSentPosition (#3929) (diff) | |
parent | Add TOLUA_EXPOSITION for readability (diff) | |
download | cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.gz cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.bz2 cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.lz cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.xz cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.tar.zst cuberite-da0778dfaa6f82634b91cf981710ecc7809529ae.zip |
Diffstat (limited to 'src/Cuboid.h')
-rw-r--r-- | src/Cuboid.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/Cuboid.h b/src/Cuboid.h index b9d5f8cfa..acb19d46b 100644 --- a/src/Cuboid.h +++ b/src/Cuboid.h @@ -13,15 +13,12 @@ public: Vector3i p1, p2; cCuboid(void) {} - cCuboid(const cCuboid & a_Cuboid) : p1(a_Cuboid.p1), p2(a_Cuboid.p2) {} 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) {} - // tolua_end - - cCuboid & operator =(cCuboid a_Other); - - // tolua_begin + #ifdef TOLUA_EXPOSITION // tolua isn't aware of implicitly generated copy constructors + cCuboid(const cCuboid & a_Cuboid); + #endif // DEPRECATED, use cCuboid(Vector3i, Vector3i) instead cCuboid(int a_X1, int a_Y1, int a_Z1, int a_X2, int a_Y2, int a_Z2) : p1(a_X1, a_Y1, a_Z1), p2(a_X2, a_Y2, a_Z2) @@ -30,7 +27,7 @@ public: } void Assign(int a_X1, int a_Y1, int a_Z1, int a_X2, int a_Y2, int a_Z2); - void Assign(const cCuboid & a_SrcCuboid); + void Assign(const cCuboid & a_SrcCuboid) { *this = a_SrcCuboid; } void Sort(void); |