[libcxx-commits] [libcxx] b51eaeb - [libc++] Remove workaround for clang-tidy 16 in the test suite setup code (#69035)
via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Oct 16 09:18:44 PDT 2023
Author: Louis Dionne
Date: 2023-10-16T09:18:40-07:00
New Revision: b51eaebd2b437ff4fdb8b2e80131a665da80a290
URL: https://github.com/llvm/llvm-project/commit/b51eaebd2b437ff4fdb8b2e80131a665da80a290
DIFF: https://github.com/llvm/llvm-project/commit/b51eaebd2b437ff4fdb8b2e80131a665da80a290.diff
LOG: [libc++] Remove workaround for clang-tidy 16 in the test suite setup code (#69035)
We have moved to clang-tidy 17 now, so the workaround shouldn't be
necessary.
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 456794b9b1cce95..c3732560f5e469a 100644
--- a/libcxx/utils/libcxx/test/params.py
+++ b/libcxx/utils/libcxx/test/params.py
@@ -77,9 +77,6 @@
def getStdFlag(cfg, std):
- # TODO(LLVM-17) Remove this clang-tidy-16 work-around
- if std == "c++23":
- std = "c++2b"
if hasCompileFlag(cfg, "-std=" + std):
return "-std=" + std
# TODO(LLVM-19) Remove the fallbacks needed for Clang 16.
More information about the libcxx-commits
mailing list