ifdef removed from MapBase and warning disabled

This commit is contained in:
Hauke Heibel
2009-08-31 17:24:38 +02:00
parent 095809edda
commit bc7aec0ef5
2 changed files with 1 additions and 3 deletions

View File

@@ -180,12 +180,10 @@ template<typename Derived> class MapBase
&& cols >= 0 && (ColsAtCompileTime == Dynamic || ColsAtCompileTime == cols)));
}
#ifndef _MSC_VER
Derived& operator=(const MapBase& other)
{
return Base::operator=(other);
}
#endif
using Base::operator=;
using Base::operator*=;