Skip to content

Commit

Permalink
Clang-tidy build working from CMakeLists.txt, turned off again
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsan committed Sep 25, 2019
1 parent a82975c commit 2bb48e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions buildsystem/codecompliance/clangtidy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

def find_issues(check_files, dirnames):
""" Invokes the external clang-tidy tool. """
invocation = ['clang-tidy', '-checks=cppcoreguidelines-*,clang-analyzer-*,bugprone-*, ' +
'performance-*,portability-*,misc-*,modernize-*,hicpp-*,cert-*, ' +
'llvm-twine-local,llvm-prefer-isa-or-dyn-cast-in-conditionals, ' +
'llvm-prefer-register-over-unsigned,google-readability-casting ' +
invocation = ['clang-tidy', '-checks=cppcoreguidelines-*,clang-analyzer-*,bugprone-*, ' +
'performance-*,portability-*,misc-*,modernize-*,hicpp-*,cert-*, ' +
'llvm-twine-local,llvm-prefer-isa-or-dyn-cast-in-conditionals, ' +
'llvm-prefer-register-over-unsigned,google-readability-casting ' +
'-extra-arg=-std=c++17']

if check_files is not None:
Expand Down

0 comments on commit 2bb48e3

Please sign in to comment.