aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Array/VectorwiseOp.h
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-12-14 10:32:43 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-12-14 10:32:43 +0100
commit832045d363a6edf59d4dc4ad0cfbe02272dcce3c (patch)
tree3731ca27621cde14807d93cb70b24c04ea42ad94 /Eigen/src/Array/VectorwiseOp.h
parent4498864fc83340f3f52a55c12027faac19d1ede1 (diff)
Warning 4512 (assignment operators could not be generated) is now simply disabled.
All unimplemented assignment operators have been removed.
Diffstat (limited to 'Eigen/src/Array/VectorwiseOp.h')
-rw-r--r--Eigen/src/Array/VectorwiseOp.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Eigen/src/Array/VectorwiseOp.h b/Eigen/src/Array/VectorwiseOp.h
index 92e5cc000..37ed8ac17 100644
--- a/Eigen/src/Array/VectorwiseOp.h
+++ b/Eigen/src/Array/VectorwiseOp.h
@@ -147,8 +147,6 @@ struct ei_member_redux {
inline result_type operator()(const MatrixBase<Derived>& mat) const
{ return mat.redux(m_functor); }
const BinaryOp m_functor;
-private:
- ei_member_redux& operator=(const ei_member_redux&);
};
/** \array_module \ingroup Array_Module
@@ -490,9 +488,6 @@ template<typename ExpressionType, int Direction> class VectorwiseOp
protected:
ExpressionTypeNested m_matrix;
-
- private:
- VectorwiseOp& operator=(const VectorwiseOp&);
};
/** \array_module