Silence a -Wparentheses warning; NFC.

llvm-svn: 325293
This commit is contained in:
Aaron Ballman 2018-02-15 21:03:39 +00:00
parent 6f20dc8988
commit f884cd42cc
1 changed files with 1 additions and 1 deletions

View File

@ -1197,7 +1197,7 @@ CallEventManager::getCaller(const StackFrameContext *CalleeCtx,
// destructors, though this could change in the future.
const CFGBlock *B = CalleeCtx->getCallSiteBlock();
CFGElement E = (*B)[CalleeCtx->getIndex()];
assert(E.getAs<CFGImplicitDtor>() || E.getAs<CFGTemporaryDtor>() &&
assert((E.getAs<CFGImplicitDtor>() || E.getAs<CFGTemporaryDtor>()) &&
"All other CFG elements should have exprs");
SValBuilder &SVB = State->getStateManager().getSValBuilder();