Fixed warnings regarding missing assignment operator.

This commit is contained in:
Hauke Heibel
2010-06-11 07:59:59 +02:00
parent 988aaed964
commit cedea2aba4
2 changed files with 8 additions and 1 deletions

View File

@@ -323,6 +323,8 @@ template<typename Derived> struct MatrixExponentialReturnValue
protected:
const Derived& m_src;
private:
MatrixExponentialReturnValue& operator=(const MatrixExponentialReturnValue&);
};
template<typename Derived>