aboutsummaryrefslogtreecommitdiff
path: root/libcxx/include/tuple
diff options
context:
space:
mode:
authorNikolas Klauser <nikolasklauser@berlin.de>2022-02-11 19:15:18 +0100
committerNikolas Klauser <nikolasklauser@berlin.de>2022-02-11 19:16:01 +0100
commit169a66eac8f9aa0542d00a16896fba4e8e951e0f (patch)
treeee729a6fc12fabc71b8084ebe15fbbeae9c91f60 /libcxx/include/tuple
parent2ba06bed6b1eda41ad2cc9a16392f770f1bf0bcc (diff)
downloadllvm-169a66eac8f9aa0542d00a16896fba4e8e951e0f.zip
llvm-169a66eac8f9aa0542d00a16896fba4e8e951e0f.tar.gz
llvm-169a66eac8f9aa0542d00a16896fba4e8e951e0f.tar.bz2
[libc++] Remove __functional_base
Reviewed By: ldionne, Quuxplusone, #libc Spies: Mordante, mgorny, libcxx-commits, arichardson, llvm-commits, arphaman Differential Revision: https://reviews.llvm.org/D119439
Diffstat (limited to 'libcxx/include/tuple')
-rw-r--r--libcxx/include/tuple12
1 files changed, 11 insertions, 1 deletions
diff --git a/libcxx/include/tuple b/libcxx/include/tuple
index 046a242..a28a2e8 100644
--- a/libcxx/include/tuple
+++ b/libcxx/include/tuple
@@ -169,7 +169,6 @@ template <class... Types>
#include <__compare/synth_three_way.h>
#include <__config>
#include <__functional/unwrap_ref.h>
-#include <__functional_base>
#include <__memory/allocator_arg_t.h>
#include <__memory/uses_allocator.h>
#include <__tuple>
@@ -182,6 +181,17 @@ template <class... Types>
#include <utility>
#include <version>
+// TODO: remove these headers
+#include <__functional/binary_function.h>
+#include <__functional/invoke.h>
+#include <__functional/operations.h>
+#include <__functional/reference_wrapper.h>
+#include <__functional/unary_function.h>
+#include <__functional/weak_result_type.h>
+#include <exception>
+#include <new>
+#include <typeinfo>
+
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif