diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-07-28 23:07:49 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-07-28 23:07:49 +0000 |
commit | fde18c53548769748b7a2fc59f5281fdec848686 (patch) | |
tree | bd1d5cfbc57ac1ebf31d91824222b92969aa7d2a | |
parent | fa7a95c62aa573a30d87c215b320b0086ed08bdc (diff) |
[analyzer] add accessor to StoreRef.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136417 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h b/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h index 0662eadc93..7be138588d 100644 --- a/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h +++ b/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h @@ -44,6 +44,7 @@ public: ~StoreRef(); Store getStore() const { return store; } + const StoreManager &getStoreManager() const { return mgr; } }; }} |