diff options
Diffstat (limited to 'include/clang/StaticAnalyzer/PathSensitive/Checker.h')
-rw-r--r-- | include/clang/StaticAnalyzer/PathSensitive/Checker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/StaticAnalyzer/PathSensitive/Checker.h b/include/clang/StaticAnalyzer/PathSensitive/Checker.h index b2103a2426..797a377c56 100644 --- a/include/clang/StaticAnalyzer/PathSensitive/Checker.h +++ b/include/clang/StaticAnalyzer/PathSensitive/Checker.h @@ -264,7 +264,7 @@ public: virtual void PreVisitBind(CheckerContext &C, const Stmt *StoreE, SVal location, SVal val) {} virtual void evalDeadSymbols(CheckerContext &C, SymbolReaper &SymReaper) {} - virtual void evalEndPath(EndPathNodeBuilder &B, void *tag, + virtual void evalEndPath(EndOfFunctionNodeBuilder &B, void *tag, ExprEngine &Eng) {} virtual void MarkLiveSymbols(const GRState *state, SymbolReaper &SymReaper) {} @@ -287,7 +287,7 @@ public: return state; } - virtual bool WantsRegionChangeUpdate(const GRState *state) { return false; } + virtual bool wantsRegionChangeUpdate(const GRState *state) { return false; } virtual const GRState *EvalRegionChanges(const GRState *state, const MemRegion * const *Begin, |