Const operator==
This commit is contained in:
parent
bfd3b8cbce
commit
2b9fec5d82
1 changed files with 2 additions and 2 deletions
|
@ -40,8 +40,8 @@ struct Matrix
|
|||
|
||||
Matrix<N,M>& operator=(const Matrix<N,M>& rhs);
|
||||
|
||||
bool operator==(const Matrix<N,M>& rhs);
|
||||
bool operator!=(const Matrix<N,M>& rhs);
|
||||
bool operator==(const Matrix<N,M>& rhs) const;
|
||||
bool operator!=(const Matrix<N,M>& rhs) const;
|
||||
|
||||
/** Value accessor. Get the ij'th item. */
|
||||
Double& operator()(UInt i, UInt j);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue