]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
stl_bvector.h: Replace __ITERATOR_CATEGORY with __iterator_category.
authorPhil Edwards <pme@gcc.gnu.org>
Fri, 20 Apr 2001 20:16:37 +0000 (20:16 +0000)
committerPhil Edwards <pme@gcc.gnu.org>
Fri, 20 Apr 2001 20:16:37 +0000 (20:16 +0000)
2001-04-20  Phil Edwards  <pme@sources.redhat.com>

* include/bits/stl_bvector.h:  Replace __ITERATOR_CATEGORY with
__iterator_category.

From-SVN: r41468

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_bvector.h

index 7dc265aa801eb14a8f7482b1256f2b184fe871b1..fd6f183b951cb7883ce28f102b224a2fcc0d1319 100644 (file)
@@ -1,3 +1,8 @@
+2001-04-20  Phil Edwards  <pme@sources.redhat.com>
+
+       * include/bits/stl_bvector.h:  Replace __ITERATOR_CATEGORY with
+       __iterator_category.
+
 2001-04-19  Benjamin Kosnik  <bkoz@redhat.com>
 
        * acconfig.h (_GLIBCPP_USE_C99): Add.
index 7b768a4c3ed7e28d151046fdd1c15b23bdae3ea6..e57b6be33582082ea48d67b38faa597652592bf8 100644 (file)
@@ -498,7 +498,7 @@ template <typename _Alloc>
     template <class _InputIterator>
     void _M_initialize_dispatch(_InputIterator __first, _InputIterator __last,
                                 __false_type) {
-      _M_initialize_range(__first, __last, __ITERATOR_CATEGORY(__first));
+      _M_initialize_range(__first, __last, __iterator_category(__first));
     }
   
     template <class _InputIterator>
@@ -553,7 +553,7 @@ template <typename _Alloc>
   
     template <class _InputIter>
     void _M_assign_dispatch(_InputIter __first, _InputIter __last, __false_type)
-      { _M_assign_aux(__first, __last, __ITERATOR_CATEGORY(__first)); }
+      { _M_assign_aux(__first, __last, __iterator_category(__first)); }
   
     template <class _InputIterator>
     void _M_assign_aux(_InputIterator __first, _InputIterator __last,
@@ -628,7 +628,7 @@ template <typename _Alloc>
     void _M_insert_dispatch(iterator __pos,
                             _InputIterator __first, _InputIterator __last,
                             __false_type) {
-      _M_insert_range(__pos, __first, __last, __ITERATOR_CATEGORY(__first));
+      _M_insert_range(__pos, __first, __last, __iterator_category(__first));
     }
   
     template <class _InputIterator>