diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-20 02:14:22 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-20 02:14:22 +0000 |
commit | a02d893f15d4663bdba3bd92ade10070bf0510e4 (patch) | |
tree | 81cad07f4d5725cc0eca49a51b4cbdc48b2af10d | |
parent | 257d1d360282ad075f762991707f07525e898758 (diff) |
Add comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108795 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/AnalysisContext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Analysis/AnalysisContext.h b/include/clang/Analysis/AnalysisContext.h index 584173a33f..45f1e93699 100644 --- a/include/clang/Analysis/AnalysisContext.h +++ b/include/clang/Analysis/AnalysisContext.h @@ -103,7 +103,10 @@ public: private: ContextKind Kind; + + // AnalysisContext can't be const since some methods may modify its member. AnalysisContext *Ctx; + const LocationContext *Parent; protected: |