MCPcopy Create free account
hub / github.com/bluescarni/mppp / test_constexpr_cm_assignment

Function test_constexpr_cm_assignment

test/complex128_basic.cpp:54–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52#if MPPP_CPLUSPLUS >= 201402L
53
54constexpr 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
63constexpr auto test_constexpr_c128_assignment(const cplex128 &c)
64{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected