diff options
Diffstat (limited to 'libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp')
| -rw-r--r-- | libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp index 1fb5c72e72f..416c6b4e334 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp @@ -30,14 +30,14 @@ void swap(NotSwappable &, NotSwappable &) = delete; struct NotCopyable { NotCopyable() = default; - NotCopyable(NotCopyable const &) = delete; - NotCopyable &operator=(NotCopyable const &) = delete; + NotCopyable(const NotCopyable &) = delete; + NotCopyable &operator=(const NotCopyable &) = delete; }; struct NotCopyableWithSwap { NotCopyableWithSwap() = default; - NotCopyableWithSwap(NotCopyableWithSwap const &) = delete; - NotCopyableWithSwap &operator=(NotCopyableWithSwap const &) = delete; + NotCopyableWithSwap(const NotCopyableWithSwap &) = delete; + NotCopyableWithSwap &operator=(const NotCopyableWithSwap &) = delete; }; void swap(NotCopyableWithSwap &, NotCopyableWithSwap) {} @@ -73,7 +73,7 @@ struct NothrowTypeImp { static void reset() { move_called = move_assign_called = swap_called = 0; } NothrowTypeImp() = default; explicit NothrowTypeImp(int v) : value(v) {} - NothrowTypeImp(NothrowTypeImp const &o) noexcept(NT_Copy) : value(o.value) { + NothrowTypeImp(const NothrowTypeImp &o) noexcept(NT_Copy) : value(o.value) { assert(false); } // never called by test NothrowTypeImp(NothrowTypeImp &&o) noexcept(NT_Move) : value(o.value) { @@ -81,7 +81,7 @@ struct NothrowTypeImp { do_throw<!NT_Move>(); o.value = -1; } - NothrowTypeImp &operator=(NothrowTypeImp const &) noexcept(NT_CopyAssign) { + NothrowTypeImp &operator=(const NothrowTypeImp &) noexcept(NT_CopyAssign) { assert(false); return *this; } // never called by the tests |

