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