This is going to be used for a clang-tidy-diff script to display
warnings in changed lines only. The option uses JSON, as its value is not
intended to be entered manually.
Details
Details
Diff Detail
Diff Detail
Event Timeline
clang-tidy/ClangTidyDiagnosticConsumer.cpp | ||
---|---|---|
273 | Debug output? | |
clang-tidy/ClangTidyDiagnosticConsumer.h | ||
175 | That's a strange interface. I assume you want to remove some duplication that way? If true, I'd rather pull out the common code into a 3rd helper function and use that from both places. | |
clang-tidy/ClangTidyOptions.h | ||
23 | // LineRange is a pair<start, end> (inclusive). |
Comment Actions
Removed debug output, added a comment for LineRange, changed the interface of
ClangTidyDiagnosticConsumer::relatesToUserCodeAndPassesLineFilter (and renamed it).
That's a strange interface. I assume you want to remove some duplication that way? If true, I'd rather pull out the common code into a 3rd helper function and use that from both places.