Skip to content

Commit 3090721

Browse files
authored
Merge pull request #758 from dtolnay/clang-tidy-11
Update to clang-tidy 11
2 parents dda0c77 + 395e20f commit 3090721

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.clang-tidy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Checks:
1010
-cppcoreguidelines-pro-type-const-cast,
1111
-cppcoreguidelines-pro-type-member-init,
1212
-cppcoreguidelines-pro-type-reinterpret-cast,
13+
-cppcoreguidelines-pro-type-vararg,
1314
-cppcoreguidelines-special-member-functions,
1415
-modernize-use-default-member-init,
1516
-modernize-use-equals-default,

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ jobs:
107107
steps:
108108
- uses: actions/checkout@v2
109109
- name: Install clang-tidy
110-
run: sudo apt-get install clang-tidy-10
110+
run: sudo apt-get install clang-tidy-11
111111
- name: Run clang-tidy
112-
run: clang-tidy-10 src/cxx.cc --warnings-as-errors=*
112+
run: clang-tidy-11 src/cxx.cc --warnings-as-errors=*

0 commit comments

Comments
 (0)