summaryrefslogtreecommitdiffstats
path: root/src/math/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/vector.h')
-rw-r--r--src/math/vector.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/math/vector.h b/src/math/vector.h
index 222d0cd..73e8e44 100644
--- a/src/math/vector.h
+++ b/src/math/vector.h
@@ -21,16 +21,18 @@
#pragma once
-#include "const.h"
-#include "func.h"
+
+#include "math/const.h"
+#include "math/func.h"
+
#include <cmath>
#include <sstream>
// Math module namespace
-namespace Math
-{
+namespace Math {
+
/**
* \struct Vector
@@ -277,4 +279,5 @@ inline Vector Clamp(const Vector &vec, const Vector &min, const Vector &max)
return clamped;
}
-}; // namespace Math
+
+} // namespace Math