Searched defs:CopyCannotThrow (Results 1 – 2 of 2) sorted by relevance
160 struct CopyCannotThrow { struct162 CopyCannotThrow() { ++alive; } in CopyCannotThrow() argument163 CopyCannotThrow(const CopyCannotThrow &) noexcept { ++alive; } in CopyCannotThrow() function164 CopyCannotThrow(CopyCannotThrow &&) noexcept { assert(false); } in CopyCannotThrow() function166 CopyCannotThrow &operator=(CopyCannotThrow &&) noexcept { assert(false); return *this; } in operator =() argument
146 struct CopyCannotThrow { struct148 CopyCannotThrow() { ++alive; } in CopyCannotThrow() argument149 CopyCannotThrow(const CopyCannotThrow &) noexcept { ++alive; } in CopyCannotThrow() argument150 CopyCannotThrow(CopyCannotThrow &&) noexcept { assert(false); } in CopyCannotThrow() function152 CopyCannotThrow &operator=(CopyCannotThrow &&) noexcept { assert(false); return *this; } in operator =() argument