//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03 // // template // class scoped_allocator_adaptor // template void destroy(T* p); #include #include #include #include "test_macros.h" #include "allocators.h" struct B { static bool constructed; B() {constructed = true;} ~B() {constructed = false;} }; bool B::constructed = false; int main(int, char**) { { 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); } return 0; }