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/Vector3.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 'src/Vector3.h')
-rw-r--r-- | src/Vector3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Vector3.h b/src/Vector3.h index 5c4839ab7..7c37c2601 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -21,7 +21,7 @@ public: inline Vector3(T a_x, T a_y, T a_z) : x(a_x), y(a_y), z(a_z) {} - #if 0 // Hardcoded copy constructors (tolua++ does not support function templates .. yet) + #ifdef TOLUA_EXPOSITION // Hardcoded copy constructors (tolua++ does not support function templates .. yet) Vector3(const Vector3<float> & a_Rhs); Vector3(const Vector3<double> & a_Rhs); Vector3(const Vector3<int> & a_Rhs); |