
We decided to integrate the PSTL into our own headers and only share the backend impletementations. This is a first step in that direction, specifically it copies the PSTL headers into the libc++ structure. Reviewed By: ldionne, #libc Spies: rodgert, mikhail.ramalho, jplehr, bcain, h-vetinari, Mordante, rarutyun, var-const, sstefan1, pcwang-thead, libcxx-commits, arichardson, mgrang, miyuki Differential Revision: https://reviews.llvm.org/D141779
16 lines
514 B
C++
16 lines
514 B
C++
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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 __PSTL_ALGORITHM
|
|
#define __PSTL_ALGORITHM
|
|
|
|
#include <pstl/internal/glue_algorithm_impl.h>
|
|
|
|
#endif /* __PSTL_ALGORITHM */
|