Remove references to `bugpoint' from the now-generic system utilities.
[oota-llvm.git] / include / Support / ilist
index 83a1fe670e93168955853a9f8d72b30544e47c7b..afd858d5590af09a30fb94289e9a1130033d6f52 100644 (file)
@@ -74,11 +74,13 @@ class ilist_iterator
   typedef ilist_traits<NodeTy> Traits;
   typedef bidirectional_iterator<NodeTy, ptrdiff_t> super;
 
+public:
+  typedef size_t size_type;
   typedef typename super::pointer pointer;
   typedef typename super::reference reference;
+private:
   pointer NodePtr;
 public:
-  typedef size_t size_type;
 
   ilist_iterator(pointer NP) : NodePtr(NP) {}
   ilist_iterator(reference NR) : NodePtr(&NR) {}