diff --git a/complex.hh b/complex.hh index d4dce63..df1fa40 100644 --- a/complex.hh +++ b/complex.hh @@ -14,7 +14,7 @@ class Complex T re, im; public: typedef T value_type; - constexpr Complex() /*: re(0), im(0)*/ {} + constexpr Complex() : re(0), im(0) {} constexpr Complex(T r) : re(r), im(0) {} constexpr Complex(T r, T i) : re(r), im(i) {} constexpr T real() const { return re; }