aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-11 07:59:59 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-11 07:59:59 +0200
commitcedea2aba459a131459af9fd69d4c42eef7394da (patch)
tree9a2471a8df7f8a1dd05b4cee9abb63f654390d09 /unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h
parent988aaed964db92878466642ddf32ed7d50dd73c4 (diff)
Fixed warnings regarding missing assignment operator.
Diffstat (limited to 'unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h')
-rw-r--r--unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h
index 5d47f2cec..a4d827746 100644
--- a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h
+++ b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h
@@ -323,6 +323,8 @@ template<typename Derived> struct MatrixExponentialReturnValue
protected:
const Derived& m_src;
+ private:
+ MatrixExponentialReturnValue& operator=(const MatrixExponentialReturnValue&);
};
template<typename Derived>