From: Phil Edwards Date: Fri, 20 Apr 2001 20:16:37 +0000 (+0000) Subject: stl_bvector.h: Replace __ITERATOR_CATEGORY with __iterator_category. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e906926f5fdadafb5a359fcb17204e533fa2c22c;p=gcc.git stl_bvector.h: Replace __ITERATOR_CATEGORY with __iterator_category. 2001-04-20 Phil Edwards * include/bits/stl_bvector.h: Replace __ITERATOR_CATEGORY with __iterator_category. From-SVN: r41468 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7dc265aa801..fd6f183b951 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2001-04-20 Phil Edwards + + * include/bits/stl_bvector.h: Replace __ITERATOR_CATEGORY with + __iterator_category. + 2001-04-19 Benjamin Kosnik * acconfig.h (_GLIBCPP_USE_C99): Add. diff --git a/libstdc++-v3/include/bits/stl_bvector.h b/libstdc++-v3/include/bits/stl_bvector.h index 7b768a4c3ed..e57b6be3358 100644 --- a/libstdc++-v3/include/bits/stl_bvector.h +++ b/libstdc++-v3/include/bits/stl_bvector.h @@ -498,7 +498,7 @@ template template 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 @@ -553,7 +553,7 @@ template template 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 void _M_assign_aux(_InputIterator __first, _InputIterator __last, @@ -628,7 +628,7 @@ template 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