[Openmp-commits] [PATCH] D149010: [OpenMP] Fix GCC build issues and restore "Additional APIs used by the MSVC compiler for loop collapse (rectangular and non-rectangular loops)"
Shilei Tian via Phabricator via Openmp-commits
openmp-commits at lists.llvm.org
Mon Apr 24 14:27:12 PDT 2023
tianshilei1992 added inline comments.
================
Comment at: openmp/runtime/src/kmp_collapse.h:16
+
+#include <vector>
+#include <type_traits>
----------------
`vector` cannot be used here because it requires the standard C++ library. `libomp` is a C library *written in C++ syntax with header only STL*.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D149010/new/
https://reviews.llvm.org/D149010
More information about the Openmp-commits
mailing list