diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-02-26 08:46:13 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-02-26 08:46:13 +0000 |
commit | 8fc19872bc0921d8f7af25e91bf95afd7c7cd6df (patch) | |
tree | a1544c0d5a1bad65786597e616b17a5d9e2683ce | |
parent | 9ba6166f4a78722e7df8ffbd64eb788bfdf2764a (diff) |
Make GDM private.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97222 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Checker/PathSensitive/GRState.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/clang/Checker/PathSensitive/GRState.h b/include/clang/Checker/PathSensitive/GRState.h index 6a1c4d2949..9194ee88a1 100644 --- a/include/clang/Checker/PathSensitive/GRState.h +++ b/include/clang/Checker/PathSensitive/GRState.h @@ -76,16 +76,13 @@ public: typedef llvm::ImmutableMap<void*, void*> GenericDataMap; private: - void operator=(const GRState& R) const; + void operator=(const GRState& R) const; // Do not implement. friend class GRStateManager; GRStateManager *StateMgr; Environment Env; Store St; - - // FIXME: Make these private. -public: GenericDataMap GDM; public: |