Skip to content

Commit

Permalink
Fix clang-tidy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Apr 23, 2018
1 parent 4cba450 commit 2d89a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ build/%: %.cpp build/%.d
$(CXX) $(CXXSTD) -Iinclude $(CPPFLAGS) $(CXXFLAGS) $< -o $@

build/%.clang-tidy: %
$(CLANG_TIDY) -extra-arg "-Iinclude" -extra-arg "-std=c++11" -checks=*,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-misc-macro-parentheses -warnings-as-errors=* $< 2>/dev/null
$(CLANG_TIDY) -extra-arg "-Iinclude" -extra-arg "-std=c++11" -checks=*,-fuchsia-*,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-misc-macro-parentheses,-hicpp-no-array-decay -warnings-as-errors=* $< 2>/dev/null
@mkdir -p $(@D)
@touch $@

Expand Down

0 comments on commit 2d89a60

Please sign in to comment.