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

@@ -53,14 +53,9 @@ class Array
using Base::base;
using Base::coeff;
using Base::coeffRef;
using Base::operator+=;
using Base::operator-=;
using Base::operator*=;
using Base::operator/=;
/**
* The usage of
* The usage of
* using Base::operator=;
* fails on MSVC. Since the code below is working with GCC and MSVC, we skipped
* the usage of 'using'. This should be done only for operator=.