remove useless using comp. assignment operators

This commit is contained in:
Gael Guennebaud
2010-01-15 13:34:28 +01:00
parent 76a355817b
commit d62ee0668f
4 changed files with 8 additions and 27 deletions

View File

@@ -274,7 +274,7 @@ class DenseStorageBase : public _Base<Derived>
* of \c *this. In case values need to be appended to the matrix they will be uninitialized.
*/
EIGEN_STRONG_INLINE void conservativeResize(int rows, int cols)
{
{
ei_conservative_resize_like_impl<Derived>::run(*this, rows, cols);
}
@@ -332,11 +332,6 @@ class DenseStorageBase : public _Base<Derived>
return Base::operator=(func);
}
using Base::operator +=;
using Base::operator -=;
using Base::operator *=;
using Base::operator /=;
EIGEN_STRONG_INLINE explicit DenseStorageBase() : m_storage()
{
// _check_template_params();
@@ -453,7 +448,7 @@ class DenseStorageBase : public _Base<Derived>
resizeLike(other);
}
/**
/**
* \brief Copies the value of the expression \a other into \c *this with automatic resizing.
*
* *this might be resized to match the dimensions of \a other. If *this was a null matrix (not already initialized),