From 752ec27293827b5aebf15af54d808656c38f13bf Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 20 Aug 2008 14:05:57 +0000 Subject: [PATCH] minor bugfix found using gcc-4.0 --- Eigen/src/Core/MapBase.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Eigen/src/Core/MapBase.h b/Eigen/src/Core/MapBase.h index 58afd68ab..30dc838d1 100644 --- a/Eigen/src/Core/MapBase.h +++ b/Eigen/src/Core/MapBase.h @@ -149,8 +149,6 @@ template class MapBase && cols > 0 && (ColsAtCompileTime == Dynamic || ColsAtCompileTime == cols)); } - EIGEN_INHERIT_ASSIGNMENT_OPERATORS(MapBase) - template Derived& operator+=(const MatrixBase& other) { return derived() = forceAligned() + other; }