this constructor get's an error missing subscript:
BasicMatrix(T InMatrix[Size_Y][Size_X]) {
_1_MatrixData = new T[Size_X * Size_Y];
for (unsigned long long i = 0; i < Size_Y; i++) {
for (unsigned long long j = 0; j < Size_X; j++) {
_1_MatrixData[i * Size_X + j] = InMatrix[i][j];
}
}
}
Size_X and Size_Y are template arguments
template<size_t Size_X, size_t Size_Y, typename T, bool EnableIntrinsics = false>
class BasicMatrix {
