summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/libcxx/include/execution
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/libcxx/include/execution')
-rw-r--r--gnu/llvm/libcxx/include/execution19
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/llvm/libcxx/include/execution b/gnu/llvm/libcxx/include/execution
new file mode 100644
index 00000000000..e25cb82d552
--- /dev/null
+++ b/gnu/llvm/libcxx/include/execution
@@ -0,0 +1,19 @@
+// -*- C++ -*-
+//===------------------------- execution ---------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef _LIBCPP_EXECUTION
+#define _LIBCPP_EXECUTION
+
+#include <__config>
+
+#if defined(_LIBCPP_HAS_PARALLEL_ALGORITHMS) && _LIBCPP_STD_VER >= 17
+# include <__pstl_execution>
+#endif
+
+#endif // _LIBCPP_EXECUTION