cosmopolitan/third_party/libcxx/__fwd/deque.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
742 B
C
Raw Normal View History

2024-05-27 09:12:27 +00:00
//===---------------------------------------------------------------------===//
//
// 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
//
//===---------------------------------------------------------------------===//
#ifndef _LIBCPP___FWD_DEQUE_H
#define _LIBCPP___FWD_DEQUE_H
2024-05-27 09:12:27 +00:00
#include <__config>
#include <__fwd/memory.h>
2024-05-27 09:12:27 +00:00
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
template <class _Tp, class _Allocator = allocator<_Tp> >
class _LIBCPP_TEMPLATE_VIS deque;
2024-05-27 09:12:27 +00:00
_LIBCPP_END_NAMESPACE_STD
#endif // _LIBCPP___FWD_DEQUE_H