forked from OSchip/llvm-project
NFC: Minor cleanup of function calls
This commit is contained in:
parent
50be8e4471
commit
9a7fb08487
|
@ -257,10 +257,7 @@ public:
|
|||
return true;
|
||||
ScopedIncrement ScopedDepth(&CurrentDepth);
|
||||
|
||||
if (!match(*Node->getDecomposedForm().LHS) ||
|
||||
!match(*Node->getDecomposedForm().RHS))
|
||||
return false;
|
||||
return true;
|
||||
return match(*Node->getLHS()) && match(*Node->getRHS());
|
||||
}
|
||||
bool TraverseLambdaExpr(LambdaExpr *Node) {
|
||||
if (!Finder->isTraversalIgnoringImplicitNodes())
|
||||
|
|
Loading…
Reference in New Issue