Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / include / experimental / deque
blob46962afbb795eb4aa695b5fc62a1bba1964dec9f
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 #ifndef _LIBCPP_EXPERIMENTAL_DEQUE
11 #define _LIBCPP_EXPERIMENTAL_DEQUE
14     experimental/deque synopsis
16 // C++1z
17 namespace std {
18 namespace experimental {
19 inline namespace fundamentals_v1 {
20 namespace pmr {
22   template <class T>
23   using deque = std::deque<T,polymorphic_allocator<T>>;
25 } // namespace pmr
26 } // namespace fundamentals_v1
27 } // namespace experimental
28 } // namespace std
30  */
32 #include <__assert> // all public C++ headers provide the assertion handler
33 #include <deque>
34 #include <experimental/__config>
35 #include <experimental/memory_resource>
37 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
38 #  pragma GCC system_header
39 #endif
41 _LIBCPP_BEGIN_NAMESPACE_LFTS_PMR
43 #ifndef _LIBCPP_CXX03_LANG
45 template <class _ValueT>
46 using deque = _VSTD::deque<_ValueT, polymorphic_allocator<_ValueT>>;
48 #endif // _LIBCPP_CXX03_LANG
50 _LIBCPP_END_NAMESPACE_LFTS_PMR
52 #endif /* _LIBCPP_EXPERIMENTAL_DEQUE */