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

@@ -137,6 +137,8 @@ class ProductBase : public MatrixBase<Derived>
void coeffRef(int,int);
void coeff(int) const;
void coeffRef(int);
ProductBase& operator=(const ProductBase&);
};
template<typename NestedProduct>