Home | History | Annotate | Download | only in scoped.adaptor.operators

Lines Matching refs:A2

39         typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A;
40 A a1(A1<int>(4), A2<int>(5));
44 A2<int>::copy_called = false;
45 A2<int>::move_called = false;
49 assert(A2<int>::copy_called == false);
50 assert(A2<int>::move_called == true);
54 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
55 A a1(A1<int>(4), A2<int>(5), A3<int>(6));
59 A2<int>::copy_called = false;
60 A2<int>::move_called = false;
66 assert(A2<int>::copy_called == false);
67 assert(A2<int>::move_called == true);