diff --git a/tempest/vector/C3Vector.hpp b/tempest/vector/C3Vector.hpp index 293081b..3e870f4 100644 --- a/tempest/vector/C3Vector.hpp +++ b/tempest/vector/C3Vector.hpp @@ -13,7 +13,7 @@ class C3Vector { C3Vector(float x, float y, float z) : x(x) , y(y) - , z(z){}; + , z(z) {}; C3Vector& operator*=(float a); float SquaredMag() const; };