Fix 80 col violation.

llvm-svn: 74875
This commit is contained in:
Ted Kremenek 2009-07-06 22:40:36 +00:00
parent bb5a62d46e
commit f45778f425
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ StoreManager::NewCastRegion(const GRState *state, const MemRegion* R,
// CodeTextRegion should be cast to only function pointer type.
if (isa<CodeTextRegion>(R)) {
assert(CastToTy->isFunctionPointerType() || CastToTy->isBlockPointerType()
|| (CastToTy->isPointerType()
&& CastToTy->getAsPointerType()->getPointeeType()->isVoidType()));
|| (CastToTy->isPointerType() &&
CastToTy->getAsPointerType()->getPointeeType()->isVoidType()));
return CastResult(state, R);
}