Remove alignment

This commit is contained in:
scorpioblood 2024-05-23 21:34:37 +02:00
parent dd056456d7
commit 16f30449a9

View File

@ -13,11 +13,11 @@ namespace Phanes::Core::Math {
// Accessed by M[Row][Col]. // Accessed by M[Row][Col].
template<RealType T> template<RealType T>
struct alignas(4) TMatrix2 struct TMatrix2
{ {
public: public:
alignas(4) T m[2][2]; T m[2][2];
public: public: