Details
Details
Diff Detail
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 21561 Build 21561: arc lint + arc unit
Event Timeline
Comment Actions
Hi Balazs,
The patch looks mostly fine.
| unittests/AST/ASTImporterTest.cpp | ||
|---|---|---|
| 2290 | LLVM naming conventions require it to be LookupRes. | |
| 2292 | getTuDecl() already return TranslationUnitDecl *. We should just declare FromTU as auto *, so no cast is needed here. | |
| 2313 | EXPECT_FALSE can be used instead of negations. | |
| 2328 | Names like FromFriendFunc/FromNormalFunc will make the test more readable. | |
LLVM naming conventions require it to be LookupRes.