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