Author: kremenek
Date: Wed Oct 31 12:12:47 2007
New Revision: 43559

URL: http://llvm.org/viewvc/llvm-project?rev=43559&view=rev
Log:
Changed access control within FoldingSet for some ivars from "private"
to "protected".  This allows iterators to work.

Modified:
    llvm/trunk/include/llvm/ADT/FoldingSet.h

Modified: llvm/trunk/include/llvm/ADT/FoldingSet.h
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/FoldingSet.h?rev=43559&r1=43558&r2=43559&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/FoldingSet.h (original)
+++ llvm/trunk/include/llvm/ADT/FoldingSet.h Wed Oct 31 12:12:47 2007
@@ -106,7 +106,7 @@
 /// back to the bucket to facilitate node removal.
 /// 
 class FoldingSetImpl {
-private:
+protected:
   /// Buckets - Array of bucket chains.
   ///
   void **Buckets;


_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to