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 6 Checks: '
7 7 -*,
8 8 google-*,
9   --google-runtime-int,
10 9 -google-runtime-references,
11 10 llvm-include-order,
12 11 llvm-namespace-comment,
13 12 misc-throw-by-value-catch-by-reference,
14 13 modernize*,
  14 +-modernize-use-trailing-return-type,
15 15 readability-container-size-empty,
16 16 '
17 17  
18 18 WarningsAsErrors: '
19 19 -*,
20 20 google-*,
21   --google-runtime-int,
22 21 -google-runtime-references,
23 22 llvm-include-order,
24 23 llvm-namespace-comment,
25 24 misc-throw-by-value-catch-by-reference,
26 25 modernize*,
  26 +-modernize-use-trailing-return-type,
27 27 readability-container-size-empty,
28 28 '
29 29  
... ...