diff --git a/src/basics/matrix.hh b/src/basics/matrix.hh index aa09535..d5bc64f 100644 --- a/src/basics/matrix.hh +++ b/src/basics/matrix.hh @@ -40,8 +40,8 @@ struct Matrix Matrix& operator=(const Matrix& rhs); - bool operator==(const Matrix& rhs); - bool operator!=(const Matrix& rhs); + bool operator==(const Matrix& rhs) const; + bool operator!=(const Matrix& rhs) const; /** Value accessor. Get the ij'th item. */ Double& operator()(UInt i, UInt j);