aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-10-14 11:08:00 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-10-14 11:08:00 +0200
commitc37cfc32b34f29cea9d7622ca07b74faceba87b7 (patch)
tree1775defe6e570247f79949088412e8605f714918 /Eigen
parentf4661e696ec190090ec162aac3832650d6168492 (diff)
Fixed more W4 warnings.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Array/Replicate.h3
-rw-r--r--Eigen/src/Array/VectorwiseOp.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/Eigen/src/Array/Replicate.h b/Eigen/src/Array/Replicate.h
index 653bda666..478c0bf68 100644
--- a/Eigen/src/Array/Replicate.h
+++ b/Eigen/src/Array/Replicate.h
@@ -94,6 +94,9 @@ template<typename MatrixType,int RowFactor,int ColFactor> class Replicate
const typename MatrixType::Nested m_matrix;
const ei_int_if_dynamic<RowFactor> m_rowFactor;
const ei_int_if_dynamic<ColFactor> m_colFactor;
+
+ private:
+ Replicate& operator=(const Replicate&);
};
/** \nonstableyet
diff --git a/Eigen/src/Array/VectorwiseOp.h b/Eigen/src/Array/VectorwiseOp.h
index 27e23ce59..4cb0083fa 100644
--- a/Eigen/src/Array/VectorwiseOp.h
+++ b/Eigen/src/Array/VectorwiseOp.h
@@ -450,6 +450,9 @@ template<typename ExpressionType, int Direction> class VectorwiseOp
protected:
ExpressionTypeNested m_matrix;
+
+ private:
+ VectorwiseOp& operator=(const VectorwiseOp&);
};
/** \array_module