Added private, non-implemented assignment operators to functions that don't need them (fixes VC warning on /W4).

This commit is contained in:
Hauke Heibel
2009-09-27 17:03:02 +02:00
parent 13545eab9b
commit 3c74d6b7d4
8 changed files with 29 additions and 1 deletions

View File

@@ -178,6 +178,9 @@ template<typename ExpressionType> class Cwise
protected:
ExpressionTypeNested m_matrix;
private:
Cwise& operator=(const Cwise&);
};
/** \returns a Cwise wrapper of *this providing additional coefficient-wise operations