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
This commit is contained in:
Ted Kremenek 2007-10-31 17:12:47 +00:00
parent e0703c84dd
commit 8092406e59

View File

@ -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;