From c37cfc32b34f29cea9d7622ca07b74faceba87b7 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Wed, 14 Oct 2009 11:08:00 +0200 Subject: [PATCH] Fixed more W4 warnings. --- Eigen/src/Array/Replicate.h | 3 +++ Eigen/src/Array/VectorwiseOp.h | 3 +++ 2 files changed, 6 insertions(+) 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 class Replicate const typename MatrixType::Nested m_matrix; const ei_int_if_dynamic m_rowFactor; const ei_int_if_dynamic 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 class VectorwiseOp protected: ExpressionTypeNested m_matrix; + + private: + VectorwiseOp& operator=(const VectorwiseOp&); }; /** \array_module