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

