Commit 17879500 by Peter Schmid Committed by Nathan Sidwell

stl_vector.h (vector::_M_initialize_aux): Fix typo.

2001-07-06  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
        * include/bits/stl_vector.h (vector::_M_initialize_aux): Fix typo.

From-SVN: r43808
parent c80106a4
2001-07-06 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
* include/bits/stl_vector.h (vector::_M_initialize_aux): Fix typo.
2001-07-05 Jason Merrill <jason_merrill@redhat.com> 2001-07-05 Jason Merrill <jason_merrill@redhat.com>
* testsuite_flags.in (--build-includes): backward, not backwards. * testsuite_flags.in (--build-includes): backward, not backwards.
......
...@@ -256,7 +256,7 @@ public: ...@@ -256,7 +256,7 @@ public:
void void
_M_initialize_aux(_InputIterator __first, _InputIterator __last, __false_type) _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()); _M_range_initialize(__first, __last, _IterCategory());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment