From 4284b7c63c78eb7e22c856a525bd479978c4fa78 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 31 Oct 2007 17:12:47 +0000 Subject: [PATCH] Changed access control within FoldingSet for some ivars from "private" to "protected". This allows iterators to work. llvm-svn: 43559 --- include/llvm/ADT/FoldingSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;