[libcxx-commits] [libcxx] [libc++][PSTL] Implement std::equal (PR #72448)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Nov 17 07:58:24 PST 2023
================
@@ -0,0 +1,167 @@
+//===----------------------------------------------------------------------===//
+//
+// 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___ALGORITHM_PSTL_EQUAL_H
+#define _LIBCPP___ALGORITHM_PSTL_EQUAL_H
+
+#include <__algorithm/pstl_frontend_dispatch.h>
+#include <__config>
+#include <__functional/operations.h>
+#include <__numeric/pstl_transform_reduce.h>
----------------
ldionne wrote:
Missing include `__utility/move.h`.
https://github.com/llvm/llvm-project/pull/72448
More information about the libcxx-commits
mailing list