blob: 417b11b103a23fac5a37e3862bc15b7bf1bd82bd [file] [log] [blame]
Louis Dionne59d0b3c2019-08-05 18:29:14 +00001// -*- C++ -*-
Louis Dionne9bd93882021-11-17 16:25:01 -05002//===----------------------------------------------------------------------===//
Louis Dionne59d0b3c2019-08-05 18:29:14 +00003//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_EXECUTION
11#define _LIBCPP_EXECUTION
12
13#include <__config>
Mark de Weverce8f12c2021-12-22 18:14:14 +010014#include <version>
Louis Dionne59d0b3c2019-08-05 18:29:14 +000015
16#if defined(_LIBCPP_HAS_PARALLEL_ALGORITHMS) && _LIBCPP_STD_VER >= 17
Louis Dionned53d8c02019-08-06 21:11:24 +000017# include <__pstl_execution>
Louis Dionne59d0b3c2019-08-05 18:29:14 +000018#endif
19
Arthur O'Dwyere3874622021-12-05 13:08:36 -050020#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
21#pragma GCC system_header
22#endif
23
Louis Dionne59d0b3c2019-08-05 18:29:14 +000024#endif // _LIBCPP_EXECUTION