Using operator*= is not required in MapBase. Since no other operator*= is present, none of the base class operator*='s may be hidden and all of them should be visible. As far as I was able to verify, this is not affecting GCC. This fixes #84.

This commit is contained in:
Hauke Heibel 2010-01-12 16:30:03 +01:00
parent ffaea1d995
commit 553fb31f7e

View File

@ -164,7 +164,6 @@ template<typename Derived, typename Base> class MapBase
}
using Base::operator=;
using Base::operator*=;
protected: