Commit c426c43b9073bde9ecbbb568bd58bf755a833038

Authored by Christoph Bachhuber
Committed by GitHub
1 parent 747544d7

Fix clang tidy (#451)

* Add already passing check

* Remove too modern clang-tidy-9 check
Showing 1 changed file with 2 additions and 2 deletions
.clang-tidy
@@ -6,24 +6,24 @@ FormatStyle: file @@ -6,24 +6,24 @@ FormatStyle: file
6 Checks: ' 6 Checks: '
7 -*, 7 -*,
8 google-*, 8 google-*,
9 --google-runtime-int,  
10 -google-runtime-references, 9 -google-runtime-references,
11 llvm-include-order, 10 llvm-include-order,
12 llvm-namespace-comment, 11 llvm-namespace-comment,
13 misc-throw-by-value-catch-by-reference, 12 misc-throw-by-value-catch-by-reference,
14 modernize*, 13 modernize*,
  14 +-modernize-use-trailing-return-type,
15 readability-container-size-empty, 15 readability-container-size-empty,
16 ' 16 '
17 17
18 WarningsAsErrors: ' 18 WarningsAsErrors: '
19 -*, 19 -*,
20 google-*, 20 google-*,
21 --google-runtime-int,  
22 -google-runtime-references, 21 -google-runtime-references,
23 llvm-include-order, 22 llvm-include-order,
24 llvm-namespace-comment, 23 llvm-namespace-comment,
25 misc-throw-by-value-catch-by-reference, 24 misc-throw-by-value-catch-by-reference,
26 modernize*, 25 modernize*,
  26 +-modernize-use-trailing-return-type,
27 readability-container-size-empty, 27 readability-container-size-empty,
28 ' 28 '
29 29