From: Ted Kremenek Date: Thu, 28 Jul 2011 23:07:49 +0000 (+0000) Subject: [analyzer] add accessor to StoreRef. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fde18c53548769748b7a2fc59f5281fdec848686;p=clang [analyzer] add accessor to StoreRef. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136417 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; } }; }}