aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/NestByValue.h
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-09-27 17:03:02 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-09-27 17:03:02 +0200
commit3c74d6b7d4598196d9356510a686fb7f929cf04d (patch)
treec274fbaad686d4335ab063e8d08cc8c232061fa9 /Eigen/src/Core/NestByValue.h
parent13545eab9b20cc4b66f67afd068b36521536bf64 (diff)
Added private, non-implemented assignment operators to functions that don't need them (fixes VC warning on /W4).
Diffstat (limited to 'Eigen/src/Core/NestByValue.h')
-rw-r--r--Eigen/src/Core/NestByValue.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/NestByValue.h b/Eigen/src/Core/NestByValue.h
index 85a672779..94a8f8078 100644
--- a/Eigen/src/Core/NestByValue.h
+++ b/Eigen/src/Core/NestByValue.h
@@ -102,6 +102,9 @@ template<typename ExpressionType> class NestByValue
protected:
const ExpressionType m_expression;
+
+ private:
+ NestByValue& operator=(const NestByValue&);
};
/** \returns an expression of the temporary version of *this.