diff options
author | Anna Zaks <ganna@apple.com> | 2011-10-18 23:06:11 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-10-18 23:06:11 +0000 |
commit | 8c90aadce33152b03e3d1d5c7e9c468c7b939c96 (patch) | |
tree | 1b7f4ceddb89b8c62e587d19bd9633345701a09e | |
parent | d0b080664bc6514793351a2e2a87ce67214f5306 (diff) |
[analyzer] Rely only on NodeBuilder inside CheckerContext.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142446 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h b/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h index 2b83ea2df5..aa4e0f722d 100644 --- a/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h +++ b/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h @@ -79,7 +79,7 @@ public: /// \brief Returns the number of times the current block has been visited /// along the analyzed path. - unsigned getCurrentBlockCount() {return B.getCurrentBlockCount();} + unsigned getCurrentBlockCount() {return NB.getCurrentBlockCount();} ASTContext &getASTContext() { return Eng.getContext(); |