[cfe-commits] r125153 - /cfe/trunk/include/clang/Analysis/ProgramPoint.h
Ted Kremenek
kremenek at apple.com
Tue Feb 8 17:27:27 PST 2011
Author: kremenek
Date: Tue Feb 8 19:27:27 2011
New Revision: 125153
URL: http://llvm.org/viewvc/llvm-project?rev=125153&view=rev
Log:
Make ProgramPoint::getTag() public.
Modified:
cfe/trunk/include/clang/Analysis/ProgramPoint.h
Modified: cfe/trunk/include/clang/Analysis/ProgramPoint.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/ProgramPoint.h?rev=125153&r1=125152&r2=125153&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/ProgramPoint.h (original)
+++ cfe/trunk/include/clang/Analysis/ProgramPoint.h Tue Feb 8 19:27:27 2011
@@ -71,11 +71,12 @@
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.
More information about the cfe-commits
mailing list