summaryrefslogtreecommitdiffstats
path: root/src/Vector3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Vector3.h')
-rw-r--r--src/Vector3.h2
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) {}