[llvm-commits] CVS: llvm/include/Support/BitSetVector.h

Alkis Evlogimenos alkis at cs.uiuc.edu
Wed Apr 21 11:11:01 PDT 2004


Changes in directory llvm/include/Support:

BitSetVector.h updated: 1.11 -> 1.12

---
Log message:

Declare iterator as public since it is defined as such (gcc-3.4 fix)


---
Diffs of the changes:  (+1 -1)

Index: llvm/include/Support/BitSetVector.h
diff -u llvm/include/Support/BitSetVector.h:1.11 llvm/include/Support/BitSetVector.h:1.12
--- llvm/include/Support/BitSetVector.h:1.11	Tue Nov 11 16:41:29 2003
+++ llvm/include/Support/BitSetVector.h	Wed Apr 21 11:10:40 2004
@@ -38,7 +38,6 @@
   // 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 @@
   BitSetVector();                       // do not implement!
 
 public:
+  class iterator;
   /// 
   /// Constructor: create a set of the maximum size maxSetSize.
   /// The set is initialized to empty.





More information about the llvm-commits mailing list