Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/Analysis/
H A Dcopy-elision.cpp142 class ClassWithoutDestructor { class
146 ClassWithoutDestructor(AddressVector<ClassWithoutDestructor> &v) : v(v) { in ClassWithoutDestructor() function in address_vector_tests::ClassWithoutDestructor
150 ClassWithoutDestructor(ClassWithoutDestructor &&c) : v(c.v) { push(); } in ClassWithoutDestructor() function in address_vector_tests::ClassWithoutDestructor
151 ClassWithoutDestructor(const ClassWithoutDestructor &c) : v(c.v) { push(); } in ClassWithoutDestructor() function in address_vector_tests::ClassWithoutDestructor