[llvm-commits] [llvm] r43559 - /llvm/trunk/include/llvm/ADT/FoldingSet.h
Ted Kremenek
kremenek at apple.com
Wed Oct 31 10:12:47 PDT 2007
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;
More information about the llvm-commits
mailing list