diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-02-09 01:27:27 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-02-09 01:27:27 +0000 |
commit | 58465900ca10e53b8700a64e9265870de34e1aca (patch) | |
tree | df25b8bb436f0bd697a01f095155a9270ce62b73 /include/clang/Analysis/ProgramPoint.h | |
parent | 76a40219ee5624d78aba167dce02bdbaa930955f (diff) |
Make ProgramPoint::getTag() public.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/ProgramPoint.h')
-rw-r--r-- | include/clang/Analysis/ProgramPoint.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h index 36949c1c6c..54cfc3dc0d 100644 --- a/include/clang/Analysis/ProgramPoint.h +++ b/include/clang/Analysis/ProgramPoint.h @@ -71,11 +71,12 @@ protected: protected: const void* getData1() const { return Data.first; } const void* getData2() const { return Data.second; } - const void *getTag() const { return Tag; } public: Kind getKind() const { return K; } + const void *getTag() const { return Tag; } + const LocationContext *getLocationContext() const { return L; } // For use with DenseMap. This hash is probably slow. |