Add the initializes attribute inference (#117104)
[llvm-project.git] / libcxx / modules / std / memory_resource.inc
blob740179baea273b4d0f5a24d0e9ea69f126a8a632
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 export namespace std::pmr {
11   // [mem.res.class], class memory_resource
12   using std::pmr::memory_resource;
14   using std::pmr::operator==;
16   // [mem.poly.allocator.class], class template polymorphic_allocator
17   using std::pmr::polymorphic_allocator;
19   // [mem.res.global], global memory resources
20   using std::pmr::get_default_resource;
21   using std::pmr::new_delete_resource;
22   using std::pmr::null_memory_resource;
23   using std::pmr::set_default_resource;
25   // [mem.res.pool], pool resource classes
26   using std::pmr::monotonic_buffer_resource;
27   using std::pmr::pool_options;
28   using std::pmr::synchronized_pool_resource;
29   using std::pmr::unsynchronized_pool_resource;
30 } // namespace std::pmr