diff options
| author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-04-21 16:10:40 +0000 |
|---|---|---|
| committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-04-21 16:10:40 +0000 |
| commit | 07f7574ba3c9981edd9f6b3ad98565daae47eecb (patch) | |
| tree | 24ff4eaaeb3030e006652ec0690361a1ea4fec60 /llvm/include/Support/BitSetVector.h | |
| parent | a9691fe70dc36cb6bbced92df8427286f4c95ec3 (diff) | |
| download | bcm5719-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.h | 2 |
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. |

