We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a666c commit af07f99Copy full SHA for af07f99
include/boost/decimal/complex.hpp
@@ -32,12 +32,6 @@ class complex
32
constexpr complex() noexcept = default;
33
constexpr explicit complex(T real) noexcept : real_ {real}, imag_ {T{0}} {}
34
constexpr complex(T real, T imag) noexcept : real_ {real}, imag_ {imag} {}
35
- constexpr complex& operator=(const complex& rhs)
36
- {
37
- real_ = rhs.real_;
38
- imag_ = rhs.imag_;
39
- return *this;
40
- }
41
42
constexpr T real() const noexcept { return real_; }
43
constexpr T imag() const noexcept { return imag_; }
0 commit comments