From: Ted Kremenek Date: Wed, 31 Oct 2007 17:12:47 +0000 (+0000) Subject: Changed access control within FoldingSet for some ivars from "private" X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8092406e59e44633e45c3ec71a1a1d12ef0b926b;p=oota-llvm.git Changed access control within FoldingSet for some ivars from "private" to "protected". This allows iterators to work. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43559 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h index 2e74f2c8c15..2a7b802981f 100644 --- a/include/llvm/ADT/FoldingSet.h +++ b/include/llvm/ADT/FoldingSet.h @@ -106,7 +106,7 @@ namespace llvm { /// back to the bucket to facilitate node removal. /// class FoldingSetImpl { -private: +protected: /// Buckets - Array of bucket chains. /// void **Buckets;