diff options
Diffstat (limited to 'include/mm/mmmatrix.hpp')
-rw-r--r-- | include/mm/mmmatrix.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mm/mmmatrix.hpp b/include/mm/mmmatrix.hpp index 5eb0171..0b7a40b 100644 --- a/include/mm/mmmatrix.hpp +++ b/include/mm/mmmatrix.hpp @@ -414,7 +414,9 @@ mm::matrix<T, M, N> operator*( assert(a.cols() == b.rows()); mm::matrix<T, M, N> result; - mm::matrix<T, P2, N> bt = b.t(); // weak transposition + const mm::matrix<T, P2, N> bt = b.t(); // weak transposition + + npdebug("Calling *") for (unsigned row = 0; row < M; row++) for (unsigned col = 0; col < N; col++) |