aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MapBase.h
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-08-31 13:47:32 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-08-31 13:47:32 +0200
commit99bfab6dcfec005bc2bc9291716fb3a7c5e7c21d (patch)
tree344e5f0b40654a1c69144e094c0bbf10e02d0b28 /Eigen/src/Core/MapBase.h
parent9005eb07884ff850b8801cfcb78d3533bace4342 (diff)
Removed redundant assignment operators.
Diffstat (limited to 'Eigen/src/Core/MapBase.h')
-rw-r--r--Eigen/src/Core/MapBase.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Eigen/src/Core/MapBase.h b/Eigen/src/Core/MapBase.h
index 9cb085b61..a8fded4a0 100644
--- a/Eigen/src/Core/MapBase.h
+++ b/Eigen/src/Core/MapBase.h
@@ -166,11 +166,6 @@ template<typename Derived> class MapBase
&& cols >= 0 && (ColsAtCompileTime == Dynamic || ColsAtCompileTime == cols)));
}
- Derived& operator=(const MapBase& other)
- {
- return Base::operator=(other);
- }
-
using Base::operator=;
using Base::operator*=;