Home | History | Annotate | Download | only in allocator.adaptor.members

Lines Matching refs:constructed

27     static bool constructed;
29 B() {constructed = true;}
30 ~B() {constructed = false;}
33 bool B::constructed = false;
43 assert(!S::constructed);
45 assert(S::constructed);
47 assert(!S::constructed);
56 assert(!S::constructed);
57 assert(!A3<S>::constructed);
60 assert(S::constructed);
61 assert(A3<S>::constructed);
64 assert(!S::constructed);
65 assert(A3<S>::constructed);