From eba3f5734a57c35785c025b524609e50a7d37776 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 23 Nov 2020 22:30:21 -0600 Subject: [PATCH] chore(vector): reformat C3Vector --- tempest/vector/C3Vector.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; };