[libcxx-commits] [libcxx] f0e9cd2 - [libc++][PSTL] Adds a missing include.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Aug 2 09:11:50 PDT 2023
Author: Mark de Wever
Date: 2023-08-02T18:10:58+02:00
New Revision: f0e9cd2b1c6e20495fd30bae66347bbac66d3b9b
URL: https://github.com/llvm/llvm-project/commit/f0e9cd2b1c6e20495fd30bae66347bbac66d3b9b
DIFF: https://github.com/llvm/llvm-project/commit/f0e9cd2b1c6e20495fd30bae66347bbac66d3b9b.diff
LOG: [libc++][PSTL] Adds a missing include.
This should fix an error in the Apple CI.
Added:
Modified:
libcxx/include/__algorithm/pstl_copy.h
Removed:
################################################################################
diff --git a/libcxx/include/__algorithm/pstl_copy.h b/libcxx/include/__algorithm/pstl_copy.h
index 9ac268b6f95f07..4d1e749f01dc3f 100644
--- a/libcxx/include/__algorithm/pstl_copy.h
+++ b/libcxx/include/__algorithm/pstl_copy.h
@@ -21,6 +21,7 @@
#include <__type_traits/is_execution_policy.h>
#include <__type_traits/is_trivially_copyable.h>
#include <__type_traits/remove_cvref.h>
+#include <__utility/move.h>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
More information about the libcxx-commits
mailing list