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;
|
return true;
|
||||||
ScopedIncrement ScopedDepth(&CurrentDepth);
|
ScopedIncrement ScopedDepth(&CurrentDepth);
|
||||||
|
|
||||||
if (!match(*Node->getDecomposedForm().LHS) ||
|
return match(*Node->getLHS()) && match(*Node->getRHS());
|
||||||
!match(*Node->getDecomposedForm().RHS))
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
bool TraverseLambdaExpr(LambdaExpr *Node) {
|
bool TraverseLambdaExpr(LambdaExpr *Node) {
|
||||||
if (!Finder->isTraversalIgnoringImplicitNodes())
|
if (!Finder->isTraversalIgnoringImplicitNodes())
|
||||||
|
|
Loading…
Reference in New Issue