[cfe-commits] r97222 - /cfe/trunk/include/clang/Checker/PathSensitive/GRState.h

Zhongxing Xu xuzhongxing at gmail.com
Fri Feb 26 00:46:13 PST 2010


Author: zhongxingxu
Date: Fri Feb 26 02:46:13 2010
New Revision: 97222

URL: http://llvm.org/viewvc/llvm-project?rev=97222&view=rev
Log:
Make GDM private.

Modified:
    cfe/trunk/include/clang/Checker/PathSensitive/GRState.h

Modified: cfe/trunk/include/clang/Checker/PathSensitive/GRState.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Checker/PathSensitive/GRState.h?rev=97222&r1=97221&r2=97222&view=diff
==============================================================================
--- cfe/trunk/include/clang/Checker/PathSensitive/GRState.h (original)
+++ cfe/trunk/include/clang/Checker/PathSensitive/GRState.h Fri Feb 26 02:46:13 2010
@@ -76,16 +76,13 @@
   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:





More information about the cfe-commits mailing list