From d76ed18a9f941eacab40c9c3d143791d109f5cd7 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 28 Jan 2011 11:25:11 +0100 Subject: [PATCH] rm useless ctor --- Eigen/src/Core/PermutationMatrix.h | 4 ---- Eigen/src/Core/Transpositions.h | 2 -- 2 files changed, 6 deletions(-) diff --git a/Eigen/src/Core/PermutationMatrix.h b/Eigen/src/Core/PermutationMatrix.h index 06787a66d..a064e053e 100644 --- a/Eigen/src/Core/PermutationMatrix.h +++ b/Eigen/src/Core/PermutationMatrix.h @@ -86,10 +86,6 @@ class PermutationBase : public EigenBase using Base::derived; #endif - - - inline PermutationBase() {} - /** Copies the other permutation into *this */ template Derived& operator=(const PermutationBase& other) diff --git a/Eigen/src/Core/Transpositions.h b/Eigen/src/Core/Transpositions.h index 928ccb02b..88fdfb222 100644 --- a/Eigen/src/Core/Transpositions.h +++ b/Eigen/src/Core/Transpositions.h @@ -71,8 +71,6 @@ class TranspositionsBase Derived& derived() { return *static_cast(this); } const Derived& derived() const { return *static_cast(this); } - inline TranspositionsBase() {} - /** Copies the \a other transpositions into \c *this */ template Derived& operator=(const TranspositionsBase& other)