diff --git a/engine/math/include/matrix.hpp b/engine/math/include/matrix.hpp index 665280f..bc9ba3b 100755 --- a/engine/math/include/matrix.hpp +++ b/engine/math/include/matrix.hpp @@ -22,7 +22,7 @@ public: constexpr inline void operator*=(const Matrix rhs); - using VectorType = Vector; + using VectorType = Vector; constexpr VectorType& operator[](const size_t index) { return columns[index]; } constexpr VectorType operator[](const size_t index) const { return columns[index]; }