diff options
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. |