forked from OSchip/llvm-project
Fix typo spotted by MSVC.
GRExprEngine.cpp(1348) : warning C4305: 'argument' : truncation from 'clang::ProgramPoint::Kind' to 'bool' llvm-svn: 92154
This commit is contained in:
parent
b8841af8bd
commit
a713b5d9a8
|
@ -1344,8 +1344,8 @@ void GRExprEngine::VisitCommonDeclRefExpr(Expr *Ex, const NamedDecl *D,
|
|||
V = UnknownVal();
|
||||
}
|
||||
|
||||
MakeNode(Dst, Ex, Pred, state->BindExpr(Ex, V,
|
||||
ProgramPoint::PostLValueKind));
|
||||
MakeNode(Dst, Ex, Pred, state->BindExpr(Ex, V),
|
||||
ProgramPoint::PostLValueKind);
|
||||
}
|
||||
else
|
||||
EvalLoad(Dst, Ex, Pred, state, V);
|
||||
|
|
Loading…
Reference in New Issue