From 67b37af4cd5d9da20fd8aa6368f2f0a77d1dc4c8 Mon Sep 17 00:00:00 2001 From: Ian Anderson Date: Mon, 5 Jun 2023 12:32:07 -0700 Subject: [libc++][Modules] Add missing __fwd includes A few __fwd includes are missing from public modules that will become noticeable when the private submodules are split into their own top level modules (D144322). Add the missing includes. Reviewed By: ldionne, philnik, #libc Differential Revision: https://reviews.llvm.org/D153216 --- libcxx/include/tuple | 1 + 1 file changed, 1 insertion(+) (limited to 'libcxx/include/tuple') diff --git a/libcxx/include/tuple b/libcxx/include/tuple index 8f01eec..e138f0a 100644 --- a/libcxx/include/tuple +++ b/libcxx/include/tuple @@ -207,6 +207,7 @@ template #include <__config> #include <__functional/invoke.h> #include <__fwd/array.h> +#include <__fwd/get.h> #include <__fwd/tuple.h> #include <__memory/allocator_arg_t.h> #include <__memory/uses_allocator.h> -- cgit v1.1