rm useless ctor

This commit is contained in:
Gael Guennebaud 2011-01-28 11:25:11 +01:00
parent 1731a432e7
commit d76ed18a9f
2 changed files with 0 additions and 6 deletions

View File

@ -86,10 +86,6 @@ class PermutationBase : public EigenBase<Derived>
using Base::derived; using Base::derived;
#endif #endif
inline PermutationBase() {}
/** Copies the other permutation into *this */ /** Copies the other permutation into *this */
template<typename OtherDerived> template<typename OtherDerived>
Derived& operator=(const PermutationBase<OtherDerived>& other) Derived& operator=(const PermutationBase<OtherDerived>& other)

View File

@ -71,8 +71,6 @@ class TranspositionsBase
Derived& derived() { return *static_cast<Derived*>(this); } Derived& derived() { return *static_cast<Derived*>(this); }
const Derived& derived() const { return *static_cast<const Derived*>(this); } const Derived& derived() const { return *static_cast<const Derived*>(this); }
inline TranspositionsBase() {}
/** Copies the \a other transpositions into \c *this */ /** Copies the \a other transpositions into \c *this */
template<typename OtherDerived> template<typename OtherDerived>
Derived& operator=(const TranspositionsBase<OtherDerived>& other) Derived& operator=(const TranspositionsBase<OtherDerived>& other)