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 | afa9235f07ea5e6067e47f63c6a64fdfbb9e5823 (patch) | |
tree | 651731dad8c7456c5cb5931eb70d3c52baa89379 /include/Support/BitSetVector.h | |
parent | 107fb18d8968064667b187c3f65ff0558ee130e1 (diff) |
Declare iterator as public since it is defined as such (gcc-3.4 fix)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13090 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support/BitSetVector.h')
-rw-r--r-- | include/Support/BitSetVector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Support/BitSetVector.h b/include/Support/BitSetVector.h index 72f55b38c4..276af0a68a 100644 --- a/include/Support/BitSetVector.h +++ b/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. |