diff options
author | andrew <xdotftw@gmail.com> | 2014-03-11 17:32:33 +0100 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-03-11 17:33:31 +0100 |
commit | 9810d57a394b2bb56fbcfddb05d34dcd504a7b35 (patch) | |
tree | 0c6af0ac30ad95538aae5e502d9c7d72e3f7ae3c /src/Vector3.h | |
parent | LineCoeff Doc (diff) | |
download | cuberite-9810d57a394b2bb56fbcfddb05d34dcd504a7b35.tar cuberite-9810d57a394b2bb56fbcfddb05d34dcd504a7b35.tar.gz cuberite-9810d57a394b2bb56fbcfddb05d34dcd504a7b35.tar.bz2 cuberite-9810d57a394b2bb56fbcfddb05d34dcd504a7b35.tar.lz cuberite-9810d57a394b2bb56fbcfddb05d34dcd504a7b35.tar.xz cuberite-9810d57a394b2bb56fbcfddb05d34dcd504a7b35.tar.zst cuberite-9810d57a394b2bb56fbcfddb05d34dcd504a7b35.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 8ee7a87b0..841c3e7d1 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -22,7 +22,7 @@ public: T x, y, z; - inline Vector3() : x(0), y(0), z(0) {} + inline Vector3(void) : x(0), y(0), z(0) {} inline Vector3(T a_x, T a_y, T a_z) : x(a_x), y(a_y), z(a_z) {} |