Fixed more W4 warnings.

This commit is contained in:
Hauke Heibel 2009-10-14 11:08:00 +02:00
parent f4661e696e
commit c37cfc32b3
2 changed files with 6 additions and 0 deletions

View File

@ -94,6 +94,9 @@ template<typename MatrixType,int RowFactor,int ColFactor> class Replicate
const typename MatrixType::Nested m_matrix; const typename MatrixType::Nested m_matrix;
const ei_int_if_dynamic<RowFactor> m_rowFactor; const ei_int_if_dynamic<RowFactor> m_rowFactor;
const ei_int_if_dynamic<ColFactor> m_colFactor; const ei_int_if_dynamic<ColFactor> m_colFactor;
private:
Replicate& operator=(const Replicate&);
}; };
/** \nonstableyet /** \nonstableyet

View File

@ -450,6 +450,9 @@ template<typename ExpressionType, int Direction> class VectorwiseOp
protected: protected:
ExpressionTypeNested m_matrix; ExpressionTypeNested m_matrix;
private:
VectorwiseOp& operator=(const VectorwiseOp&);
}; };
/** \array_module /** \array_module