diff --git a/src/Magnum/Math/DualComplex.h b/src/Magnum/Math/DualComplex.h index f1a5df321..ad13a5095 100644 --- a/src/Magnum/Math/DualComplex.h +++ b/src/Magnum/Math/DualComplex.h @@ -136,6 +136,9 @@ template class DualComplex: public Dual> { */ constexpr /*implicit*/ DualComplex(const Complex& real, const Complex& dual = Complex(T(0), T(0))) noexcept: Dual>(real, dual) {} + /* No constructor from a pair of Dual values because that would be + ambiguous with the above */ + /** * @brief Construct dual complex number from vector *