diff --git a/Engine/src/Runtime/Core/public/Math/Matrix2.hpp b/Engine/src/Runtime/Core/public/Math/Matrix2.hpp index 0ca94fa..b70f060 100644 --- a/Engine/src/Runtime/Core/public/Math/Matrix2.hpp +++ b/Engine/src/Runtime/Core/public/Math/Matrix2.hpp @@ -13,11 +13,11 @@ namespace Phanes::Core::Math { // Accessed by M[Row][Col]. template - struct alignas(4) TMatrix2 + struct TMatrix2 { public: - alignas(4) T m[2][2]; + T m[2][2]; public: