diff --git a/src/Math/Complex.h b/src/Math/Complex.h index 64773b217..de6e0334c 100644 --- a/src/Math/Complex.h +++ b/src/Math/Complex.h @@ -337,7 +337,7 @@ template class Complex { inline Complex invertedNormalized() const { CORRADE_ASSERT(MathTypeTraits::equals(dot(), T(1)), "Math::Complex::invertedNormalized(): complex number must be normalized", - Complex(std::numeric_limits::quiet_NaN(), std::numeric_limits::quiet_NaN())); + Complex(std::numeric_limits::quiet_NaN(), {})); return conjugated(); }