From 553fb31f7e634b14b586e14ffca9f42899626c0b Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Tue, 12 Jan 2010 16:30:03 +0100 Subject: [PATCH] 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. --- Eigen/src/Core/MapBase.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Eigen/src/Core/MapBase.h b/Eigen/src/Core/MapBase.h index 0067fbe16..4d5ec1eeb 100644 --- a/Eigen/src/Core/MapBase.h +++ b/Eigen/src/Core/MapBase.h @@ -164,7 +164,6 @@ template class MapBase } using Base::operator=; - using Base::operator*=; protected: