diff --git a/Hadrons/A2AMatrix.hpp b/Hadrons/A2AMatrix.hpp index 2f958685..831d2a02 100644 --- a/Hadrons/A2AMatrix.hpp +++ b/Hadrons/A2AMatrix.hpp @@ -196,8 +196,8 @@ public: } } - template - static inline double accTrMulFlops(C &acc, const MatLeft &a, const MatRight &b) + template + static inline double accTrMulFlops(const MatLeft &a, const MatRight &b) { double n = a.rows()*a.cols(); @@ -263,7 +263,7 @@ public: } #endif template - static inline double mulFlops(Mat &res, const Mat &a, const Mat &b) + static inline double mulFlops(const Mat &a, const Mat &b) { double nr = a.rows(), nc = a.cols();