Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 3960 Build 3960: arc lint + arc unit
Event Timeline
Comment Actions
Awesome! LG with one nit.
clang-tidy/ClangTidyDiagnosticConsumer.cpp | ||
---|---|---|
300 | Is it difficult to address right away? I also suppose (https://en.wikipedia.org/wiki/Newline#Representations) that we only care about CR+LF or LF line endings, so just looking at LFs seems more than enough (and will make code slightly simpler). This is the approach we took in many places in clang-format. |
Comment Actions
- Simplify code by not worrying about \r
- Don't allow blank lines between NOLINTNEXTLINE and the warning
Is it difficult to address right away?
I also suppose (https://en.wikipedia.org/wiki/Newline#Representations) that we only care about CR+LF or LF line endings, so just looking at LFs seems more than enough (and will make code slightly simpler). This is the approach we took in many places in clang-format.