//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03 // // template // class scoped_allocator_adaptor // template void destroy(T* p); #include #include #include #include "allocators.h" struct B { static bool constructed; B() {constructed = true;} ~B() {constructed = false;} }; bool B::constructed = false; int main() { { typedef std::scoped_allocator_adaptor> A; A a; char buf[100]; typedef B S; S* s = (S*)buf; assert(!S::constructed); a.construct(s); assert(S::constructed); a.destroy(s); assert(!S::constructed); } { typedef std::scoped_allocator_adaptor, A1> A; A a; char buf[100]; typedef B S; S* s = (S*)buf; assert(!S::constructed); assert(!A3::constructed); assert(!A3::destroy_called); a.construct(s); assert(S::constructed); assert(A3::constructed); assert(!A3::destroy_called); a.destroy(s); assert(!S::constructed); assert(A3::constructed); assert(A3::destroy_called); } }