146035553Spatrick// -*- C++ -*- 2*4bdff4beSrobert//===----------------------------------------------------------------------===// 346035553Spatrick// 446035553Spatrick// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 546035553Spatrick// See https://llvm.org/LICENSE.txt for license information. 646035553Spatrick// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 746035553Spatrick// 846035553Spatrick//===----------------------------------------------------------------------===// 946035553Spatrick 1046035553Spatrick#ifndef _LIBCPP_EXPERIMENTAL_DEQUE 1146035553Spatrick#define _LIBCPP_EXPERIMENTAL_DEQUE 12*4bdff4beSrobert 1346035553Spatrick/* 1446035553Spatrick experimental/deque synopsis 1546035553Spatrick 1646035553Spatrick// C++1z 1746035553Spatricknamespace std { 1846035553Spatricknamespace experimental { 1946035553Spatrickinline namespace fundamentals_v1 { 2046035553Spatricknamespace pmr { 2146035553Spatrick 2246035553Spatrick template <class T> 2346035553Spatrick using deque = std::deque<T,polymorphic_allocator<T>>; 2446035553Spatrick 2546035553Spatrick} // namespace pmr 2646035553Spatrick} // namespace fundamentals_v1 2746035553Spatrick} // namespace experimental 2846035553Spatrick} // namespace std 2946035553Spatrick 3046035553Spatrick */ 3146035553Spatrick 32*4bdff4beSrobert#include <__assert> // all public C++ headers provide the assertion handler 3346035553Spatrick#include <deque> 34*4bdff4beSrobert#include <experimental/__config> 3546035553Spatrick#include <experimental/memory_resource> 3646035553Spatrick 3746035553Spatrick#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 3846035553Spatrick# pragma GCC system_header 3946035553Spatrick#endif 4046035553Spatrick 4146035553Spatrick_LIBCPP_BEGIN_NAMESPACE_LFTS_PMR 4246035553Spatrick 43*4bdff4beSrobert#ifndef _LIBCPP_CXX03_LANG 44*4bdff4beSrobert 4546035553Spatricktemplate <class _ValueT> 4646035553Spatrickusing deque = _VSTD::deque<_ValueT, polymorphic_allocator<_ValueT>>; 4746035553Spatrick 48*4bdff4beSrobert#endif // _LIBCPP_CXX03_LANG 49*4bdff4beSrobert 5046035553Spatrick_LIBCPP_END_NAMESPACE_LFTS_PMR 5146035553Spatrick 5246035553Spatrick#endif /* _LIBCPP_EXPERIMENTAL_DEQUE */ 53