qvec: fix mat * mat on clang/gcc

This commit is contained in:
Eric Wasylishen 2021-10-05 23:12:02 -06:00
parent cb9d90744f
commit 07b24cce79
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ public:
// multiplication by a matrix
template<int P>
template<size_t P>
[[nodiscard]] constexpr qmat<M, P, T> operator*(const qmat<N, P, T> &other) const
{
qmat<M, P, T> res;