Searched defs:MoveThrows (Results 1 – 4 of 4) sorted by relevance
33 struct MoveThrows { struct35 MoveThrows() { ++alive; } in MoveThrows() argument36 MoveThrows(MoveThrows const&) {++alive;} in MoveThrows() function37 MoveThrows(MoveThrows&&) { throw 42; } in MoveThrows() function38 MoveThrows& operator=(MoveThrows const&) { return *this; } in operator =() argument39 MoveThrows& operator=(MoveThrows&&) { throw 42; } in operator =() argument40 ~MoveThrows() { --alive; } in ~MoveThrows() argument
41 struct MoveThrows { struct43 MoveThrows() { ++alive; } in MoveThrows() argument44 MoveThrows(MoveThrows const&) {++alive;} in MoveThrows() function45 MoveThrows(MoveThrows&&) { throw 42; } in MoveThrows() argument48 ~MoveThrows() { --alive; } in ~MoveThrows() argument
171 struct MoveThrows { struct173 MoveThrows() { ++alive; } in MoveThrows() argument174 MoveThrows(const MoveThrows &) { ++alive; } in MoveThrows() argument175 MoveThrows(MoveThrows &&) { throw 42; } in MoveThrows() argument176 MoveThrows &operator=(const MoveThrows &) { return *this; } in operator =() argument177 MoveThrows &operator=(MoveThrows &&) { throw 42; } in operator =() argument178 ~MoveThrows() { --alive; } in ~MoveThrows() argument
164 struct MoveThrows { struct166 MoveThrows() { ++alive; } in MoveThrows() function167 MoveThrows(const MoveThrows &) { ++alive; } in MoveThrows() function168 MoveThrows(MoveThrows &&) { throw 42; } in MoveThrows() argument169 MoveThrows &operator=(const MoveThrows &) { return *this; } in operator =() argument170 MoveThrows &operator=(MoveThrows &&) { throw 42; } in operator =() argument171 ~MoveThrows() { --alive; } in ~MoveThrows() argument