summaryrefslogtreecommitdiffstats
path: root/llvm/include/Support/BitSetVector.h
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-04-21 16:10:40 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-04-21 16:10:40 +0000
commit07f7574ba3c9981edd9f6b3ad98565daae47eecb (patch)
tree24ff4eaaeb3030e006652ec0690361a1ea4fec60 /llvm/include/Support/BitSetVector.h
parenta9691fe70dc36cb6bbced92df8427286f4c95ec3 (diff)
downloadbcm5719-llvm-07f7574ba3c9981edd9f6b3ad98565daae47eecb.tar.gz
bcm5719-llvm-07f7574ba3c9981edd9f6b3ad98565daae47eecb.zip
Declare iterator as public since it is defined as such (gcc-3.4 fix)
llvm-svn: 13090
Diffstat (limited to 'llvm/include/Support/BitSetVector.h')
-rw-r--r--llvm/include/Support/BitSetVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/Support/BitSetVector.h b/llvm/include/Support/BitSetVector.h
index 72f55b38c4f..276af0a68a6 100644
--- a/llvm/include/Support/BitSetVector.h
+++ b/llvm/include/Support/BitSetVector.h
@@ -38,7 +38,6 @@ class BitSetVector {
// Types used internal to the representation
typedef std::bitset<BITSET_WORDSIZE> bitword;
typedef bitword::reference reference;
- class iterator;
// Data used in the representation
std::vector<bitword> bitsetVec;
@@ -67,6 +66,7 @@ private:
BitSetVector(); // do not implement!
public:
+ class iterator;
///
/// Constructor: create a set of the maximum size maxSetSize.
/// The set is initialized to empty.
OpenPOWER on IntegriCloud