Math/VectorI: Remove array constructor

This commit is contained in:
Lynix
2018-02-18 18:57:30 +01:00
parent b2d10f6e69
commit 0063ca9950
9 changed files with 8 additions and 44 deletions

View File

@@ -242,8 +242,8 @@ namespace Nz
}
#endif
const T* ptr = (&m11) + column*4;
return Vector4<T>(ptr);
const T* ptr = &m11 + column * 4;
return Vector4<T>(ptr[0], ptr[1], ptr[2], ptr[3]);
}
/*!