Fixed more W4 warnings.
diff --git a/Eigen/src/Array/Replicate.h b/Eigen/src/Array/Replicate.h
index 653bda6..478c0bf 100644
--- a/Eigen/src/Array/Replicate.h
+++ b/Eigen/src/Array/Replicate.h
@@ -94,6 +94,9 @@
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 27e23ce..4cb0083 100644
--- a/Eigen/src/Array/VectorwiseOp.h
+++ b/Eigen/src/Array/VectorwiseOp.h
@@ -450,6 +450,9 @@
protected:
ExpressionTypeNested m_matrix;
+
+ private:
+ VectorwiseOp& operator=(const VectorwiseOp&);
};
/** \array_module