зеркало из https://github.com/microsoft/clang-1.git
Fix Cast
Properly use const_cast to fix a cast-away-const error. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172561 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
644448393e
Коммит
16303fcc56
|
@ -1043,7 +1043,8 @@ bool ExprEngine::replayWithoutInlining(ExplodedNode *N,
|
|||
// Add the special flag to GDM to signal retrying with no inlining.
|
||||
// Note, changing the state ensures that we are not going to cache out.
|
||||
ProgramStateRef NewNodeState = BeforeProcessingCall->getState();
|
||||
NewNodeState = NewNodeState->set<ReplayWithoutInlining>((void*)CE);
|
||||
NewNodeState =
|
||||
NewNodeState->set<ReplayWithoutInlining>(const_cast<Stmt *>(CE));
|
||||
|
||||
// Make the new node a successor of BeforeProcessingCall.
|
||||
bool IsNew = false;
|
||||
|
|
Загрузка…
Ссылка в новой задаче