Searched refs:NothrowTypeImp (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/std/utilities/variant/variant.variant/variant.swap/ |
| H A D | swap.pass.cpp | 70 struct NothrowTypeImp { struct 75 NothrowTypeImp() = default; argument 76 explicit NothrowTypeImp(int v) : value(v) {} in NothrowTypeImp() argument 77 NothrowTypeImp(const NothrowTypeImp &o) noexcept(NT_Copy) : value(o.value) { in NothrowTypeImp() function 80 NothrowTypeImp(NothrowTypeImp &&o) noexcept(NT_Move) : value(o.value) { in NothrowTypeImp() function 85 NothrowTypeImp &operator=(const NothrowTypeImp &) noexcept(NT_CopyAssign) { in operator =() argument 89 NothrowTypeImp &operator=(NothrowTypeImp &&o) noexcept(NT_MoveAssign) { in operator =() argument 130 NothrowTypeImp<false, true, false, false, false, true>; 136 NothrowTypeImp<false, false, false, false, true, true>; 138 NothrowTypeImp<true, true, true, true, false, true>; [all …]
|