| 52 | #if MPPP_CPLUSPLUS >= 201402L |
| 53 | |
| 54 | constexpr auto test_constexpr_cm_assignment(const complex128 &c) |
| 55 | { |
| 56 | complex128 c2{}, c3{}; |
| 57 | c2 = c; |
| 58 | // NOLINTNEXTLINE(hicpp-move-const-arg, performance-move-const-arg) |
| 59 | c3 = std::move(c); |
| 60 | return std::make_pair(c2, c3); |
| 61 | } |
| 62 | |
| 63 | constexpr auto test_constexpr_c128_assignment(const cplex128 &c) |
| 64 | { |