Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 8990 Build 8990: arc lint + arc unit
Event Timeline
Comment Actions
LG with a couple of comments.
| clang-tidy/modernize/MakeSmartPtrCheck.cpp | ||
|---|---|---|
| 253 | s/auto/unsigned/, since the use of auto here seems to not be in line with http://llvm.org/docs/CodingStandards.html#use-auto-type-deduction-to-make-code-more-readable. | |
| 254 | The < 0 case doesn't make sense (it will be clear once you change the auto above to the real type). | |
| test/clang-tidy/modernize-make-unique.cpp | ||
|---|---|---|
| 291 | The comment doesn't match the test? | |
s/auto/unsigned/, since the use of auto here seems to not be in line with http://llvm.org/docs/CodingStandards.html#use-auto-type-deduction-to-make-code-more-readable.