[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
Mon Jun 26 12:33:03 PDT 2023


ldionne created this revision.
Herald added a project: All.
ldionne requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

Repository:
  rG LLVM Github Monorepo

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.534708.patch
Type: text/x-patch
Size: 583 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230626/231c5d9d/attachment.bin>


More information about the libcxx-commits mailing list