From: Peter Schmid Date: Fri, 6 Jul 2001 12:28:48 +0000 (+0000) Subject: stl_vector.h (vector::_M_initialize_aux): Fix typo. X-Git-Tag: prereleases/libstdc++-3.0.95~3445 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17879500fb31e2d9c8d251d2d3aad29b879050b5;p=thirdparty%2Fgcc.git stl_vector.h (vector::_M_initialize_aux): Fix typo. 2001-07-06 Peter Schmid * include/bits/stl_vector.h (vector::_M_initialize_aux): Fix typo. From-SVN: r43808 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c1fedb875924..8bf05638d5c7 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2001-07-06 Peter Schmid + + * include/bits/stl_vector.h (vector::_M_initialize_aux): Fix typo. + 2001-07-05 Jason Merrill * testsuite_flags.in (--build-includes): backward, not backwards. diff --git a/libstdc++-v3/include/bits/stl_vector.h b/libstdc++-v3/include/bits/stl_vector.h index 50102743d918..14f596b9e711 100644 --- a/libstdc++-v3/include/bits/stl_vector.h +++ b/libstdc++-v3/include/bits/stl_vector.h @@ -256,7 +256,7 @@ public: void _M_initialize_aux(_InputIterator __first, _InputIterator __last, __false_type) { - typedef typename iterator_traits<_InputIterator>::iterator_category _IterCategoy; + typedef typename iterator_traits<_InputIterator>::iterator_category _IterCategory; _M_range_initialize(__first, __last, _IterCategory()); }