From 07b24cce796e74f60cae3e51116c888b8489ce6d Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Tue, 5 Oct 2021 23:12:02 -0600 Subject: [PATCH] qvec: fix mat * mat on clang/gcc --- include/common/qvec.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/qvec.hh b/include/common/qvec.hh index 1fab8043..35cc9d15 100644 --- a/include/common/qvec.hh +++ b/include/common/qvec.hh @@ -551,7 +551,7 @@ public: // multiplication by a matrix - template + template [[nodiscard]] constexpr qmat operator*(const qmat &other) const { qmat res;