aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MapBase.h
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-01-12 16:30:03 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-01-12 16:30:03 +0100
commit553fb31f7e634b14b586e14ffca9f42899626c0b (patch)
tree5a756f95b5d4137e3748e3954dd2035da2caa040 /Eigen/src/Core/MapBase.h
parentffaea1d995414b6406dcbd1ff3dc90bb74f1cc60 (diff)
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.
Diffstat (limited to 'Eigen/src/Core/MapBase.h')
-rw-r--r--Eigen/src/Core/MapBase.h1
1 files changed, 0 insertions, 1 deletions
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<typename Derived, typename Base> class MapBase
}
using Base::operator=;
- using Base::operator*=;
protected: