Home
last modified time | relevance | path

Searched defs:ThrowingCopy (Results 1 – 2 of 2) sorted by relevance

/llvm-project/libcxx/test/std/containers/
H A Dexception_safety_helpers.h20 struct ThrowingCopy { struct
26 ThrowingCopy() = default; argument
27 ThrowingCopy(int value) : x(value) {} in ThrowingCopy() function
28 ~ThrowingCopy() { in ~ThrowingCopy() argument
32 ThrowingCopy(const ThrowingCopy& other) : x(other.x) { in ThrowingCopy() argument
54 bool ThrowingCopy<N>::throwing_enabled = true; argument
/llvm-project/clang/test/CXX/special/class.copy/
H A Dimplicit-move.cpp8 struct ThrowingCopy { struct