remove support for type std::complex<int>. Simplify NumTraits accordingly.

This commit is contained in:
Benoit Jacob
2007-10-14 08:16:50 +00:00
parent 5f0af72abc
commit 0f2df4b202
6 changed files with 6 additions and 22 deletions

View File

@@ -145,14 +145,12 @@ template<typename Scalar, typename Derived> class Object
Derived& operator*=(const int& other);
Derived& operator*=(const float& other);
Derived& operator*=(const double& other);
Derived& operator*=(const std::complex<int>& other);
Derived& operator*=(const std::complex<float>& other);
Derived& operator*=(const std::complex<double>& other);
Derived& operator/=(const int& other);
Derived& operator/=(const float& other);
Derived& operator/=(const double& other);
Derived& operator/=(const std::complex<int>& other);
Derived& operator/=(const std::complex<float>& other);
Derived& operator/=(const std::complex<double>& other);