aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-10-31 17:12:47 +0000
committerTed Kremenek <kremenek@apple.com>2007-10-31 17:12:47 +0000
commit8092406e59e44633e45c3ec71a1a1d12ef0b926b (patch)
tree3ee135d9bd5b9c72ebdf4b995b7fb35a0a88a96d /include/llvm
parente0703c84ddeb1a1276de4e38210c1127ef5df130 (diff)
downloadexternal_llvm-8092406e59e44633e45c3ec71a1a1d12ef0b926b.zip
external_llvm-8092406e59e44633e45c3ec71a1a1d12ef0b926b.tar.gz
external_llvm-8092406e59e44633e45c3ec71a1a1d12ef0b926b.tar.bz2
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
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/ADT/FoldingSet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h
index 2e74f2c..2a7b802 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;