[libcxx-commits] [PATCH] D153807: [libc++][NFC] Add missing includes to perfect_forward.h
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jun 27 06:47:05 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6d6e32895b15: [libc++][NFC] Add missing includes to perfect_forward.h (authored by ldionne).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153807/new/
https://reviews.llvm.org/D153807
Files:
libcxx/include/__functional/perfect_forward.h
Index: libcxx/include/__functional/perfect_forward.h
===================================================================
--- libcxx/include/__functional/perfect_forward.h
+++ libcxx/include/__functional/perfect_forward.h
@@ -11,8 +11,12 @@
#define _LIBCPP___FUNCTIONAL_PERFECT_FORWARD_H
#include <__config>
+#include <__type_traits/enable_if.h>
+#include <__type_traits/invoke.h>
+#include <__type_traits/is_constructible.h>
#include <__utility/declval.h>
#include <__utility/forward.h>
+#include <__utility/integer_sequence.h>
#include <__utility/move.h>
#include <tuple>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153807.534960.patch
Type: text/x-patch
Size: 583 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230627/01fa2488/attachment.bin>
More information about the libcxx-commits
mailing list