diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-08-20 01:23:34 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-08-20 01:23:34 +0000 |
commit | fafd3834754d2093e0ad7a1c005860fd527ecb7f (patch) | |
tree | 8cff9aac836cd2d56168221113d917801470a2af /include/clang | |
parent | 995d2818a11395b15995694a30f842a0e4fdee4f (diff) |
Rename: ProgramPoint::getContext() => ProgramPoint::getLocationContext().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79502 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Analysis/PathSensitive/ExplodedGraph.h | 2 | ||||
-rw-r--r-- | include/clang/Analysis/ProgramPoint.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index 9b6507420b..1a25565c29 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -111,7 +111,7 @@ public: ProgramPoint getLocation() const { return Location; } const LocationContext *getLocationContext() const { - return getLocation().getContext(); + return getLocation().getLocationContext(); } const GRState* getState() const { diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h index cddcefa4e9..f2ff998fd8 100644 --- a/include/clang/Analysis/ProgramPoint.h +++ b/include/clang/Analysis/ProgramPoint.h @@ -73,7 +73,7 @@ protected: public: Kind getKind() const { return K; } - const LocationContext *getContext() const { return L; } + const LocationContext *getLocationContext() const { return L; } // For use with DenseMap. This hash is probably slow. unsigned getHashValue() const { |