File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 437
437
public:
438
438
using value_type = float;
439
439
440
- constexpr complex(const complex&) = default;
441
440
constexpr complex(float re = 0.0f, float im = 0.0f);
441
+ constexpr complex(const complex<float>&) = default;
442
442
constexpr explicit complex(const complex<double>&);
443
443
constexpr explicit complex(const complex<long double>&);
444
444
465
465
public:
466
466
using value_type = double;
467
467
468
- constexpr complex(const complex&) = default;
469
468
constexpr complex(double re = 0.0, double im = 0.0);
470
469
constexpr complex(const complex<float>&);
470
+ constexpr complex(const complex<double>&) = default;
471
471
constexpr explicit complex(const complex<long double>&);
472
472
473
473
constexpr double real() const;
493
493
public:
494
494
using value_type = long double;
495
495
496
- constexpr complex(const complex&) = default;
497
496
constexpr complex(long double re = 0.0L, long double im = 0.0L);
498
497
constexpr complex(const complex<float>&);
499
498
constexpr complex(const complex<double>&);
499
+ constexpr complex(const complex<long double>&) = default;
500
500
501
501
constexpr long double real() const;
502
502
constexpr void real(long double);
You can’t perform that action at this time.
0 commit comments