[libcxx-commits] [libcxx] 7ef8793 - [libc++][PSTL] Silence clang-tidy errors.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Aug 1 08:43:52 PDT 2023
Author: Mark de Wever
Date: 2023-08-01T17:43:46+02:00
New Revision: 7ef87931ddd714f493b9e864c9273f02895fdfef
URL: https://github.com/llvm/llvm-project/commit/7ef87931ddd714f493b9e864c9273f02895fdfef
DIFF: https://github.com/llvm/llvm-project/commit/7ef87931ddd714f493b9e864c9273f02895fdfef.diff
LOG: [libc++][PSTL] Silence clang-tidy errors.
This is a quick-fix to get the CI green again, not a proper solution.
Added:
Modified:
libcxx/utils/libcxx/test/params.py
Removed:
################################################################################
diff --git a/libcxx/utils/libcxx/test/params.py b/libcxx/utils/libcxx/test/params.py
index 16861ca5e4da26..885967caefa699 100644
--- a/libcxx/utils/libcxx/test/params.py
+++ b/libcxx/utils/libcxx/test/params.py
@@ -51,6 +51,9 @@
# Disable warnings for extensions used in C++03
"-Wno-local-type-template-args",
"-Wno-c++11-extensions",
+
+ # TODO(philnik) This fails with the PSTL.
+ "-Wno-unknown-pragmas",
]
_allStandards = ["c++03", "c++11", "c++14", "c++17", "c++20", "c++23", "c++26"]
More information about the libcxx-commits
mailing list