diff options
Diffstat (limited to 'lib/StaticAnalyzer/GRState.cpp')
-rw-r--r-- | lib/StaticAnalyzer/GRState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/GRState.cpp b/lib/StaticAnalyzer/GRState.cpp index 55a2eb7eba..9c578dda68 100644 --- a/lib/StaticAnalyzer/GRState.cpp +++ b/lib/StaticAnalyzer/GRState.cpp @@ -149,8 +149,8 @@ const GRState *GRState::unbindLoc(Loc LV) const { return makeWithStore(NewStore); } -const GRState *GRState::EnterStackFrame(const StackFrameContext *frame) const { - Store new_store = getStateManager().StoreMgr->EnterStackFrame(this, frame); +const GRState *GRState::enterStackFrame(const StackFrameContext *frame) const { + Store new_store = getStateManager().StoreMgr->enterStackFrame(this, frame); return makeWithStore(new_store); } |