2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08: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
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_FUNCTIONAL_BASE
|
|
|
|
#define _LIBCPP_FUNCTIONAL_BASE
|
|
|
|
|
|
|
|
#include <__config>
|
2021-07-01 21:25:35 +08:00
|
|
|
#include <__functional/binary_function.h>
|
|
|
|
#include <__functional/invoke.h>
|
|
|
|
#include <__functional/operations.h>
|
|
|
|
#include <__functional/reference_wrapper.h>
|
2021-06-10 07:10:17 +08:00
|
|
|
#include <__functional/unary_function.h>
|
2021-07-01 21:25:35 +08:00
|
|
|
#include <__functional/weak_result_type.h>
|
|
|
|
#include <__memory/allocator_arg_t.h>
|
|
|
|
#include <__memory/uses_allocator.h>
|
2010-05-12 03:42:16 +08:00
|
|
|
#include <exception>
|
2013-09-12 10:11:16 +08:00
|
|
|
#include <new>
|
2021-05-19 23:57:04 +08:00
|
|
|
#include <type_traits>
|
|
|
|
#include <typeinfo>
|
2017-01-21 08:02:12 +08:00
|
|
|
#include <utility>
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2011-10-18 04:05:10 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2010-05-12 03:42:16 +08:00
|
|
|
#pragma GCC system_header
|
2011-10-18 04:05:10 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // _LIBCPP_FUNCTIONAL_BASE
|