[cfe-commits] r136417 - /cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
Ted Kremenek
kremenek at apple.com
Thu Jul 28 16:07:49 PDT 2011
Author: kremenek
Date: Thu Jul 28 18:07:49 2011
New Revision: 136417
URL: http://llvm.org/viewvc/llvm-project?rev=136417&view=rev
Log:
[analyzer] add accessor to StoreRef.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
Modified: cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h?rev=136417&r1=136416&r2=136417&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h Thu Jul 28 18:07:49 2011
@@ -44,6 +44,7 @@
~StoreRef();
Store getStore() const { return store; }
+ const StoreManager &getStoreManager() const { return mgr; }
};
}}
More information about the cfe-commits
mailing list