From d28d43815b736e0ab88b5056744f192d06985649 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Wed, 20 Jul 2011 09:40:11 +0000 Subject: [PATCH] safe_local_iterator.h (_Safe_local_iterator<>:: _Safe_local_iterator(const _Iterator&, size_type, const _Sequence*)): Fix typo. 2011-07-20 Paolo Carlini * include/debug/safe_local_iterator.h (_Safe_local_iterator<>:: _Safe_local_iterator(const _Iterator&, size_type, const _Sequence*)): Fix typo. From-SVN: r176500 --- libstdc++-v3/ChangeLog | 6 ++++++ libstdc++-v3/include/debug/safe_local_iterator.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b848ce6ba35..519f9cbb5f8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2011-07-20 Paolo Carlini + + * include/debug/safe_local_iterator.h (_Safe_local_iterator<>:: + _Safe_local_iterator(const _Iterator&, size_type, const _Sequence*)): + Fix typo. + 2011-07-19 François Dumont * include/debug/safe_unordered_base.h, safe_unordered_sequence.h, diff --git a/libstdc++-v3/include/debug/safe_local_iterator.h b/libstdc++-v3/include/debug/safe_local_iterator.h index a204f28cf7f..de0cbee2a62 100644 --- a/libstdc++-v3/include/debug/safe_local_iterator.h +++ b/libstdc++-v3/include/debug/safe_local_iterator.h @@ -88,7 +88,7 @@ namespace __gnu_debug * @pre @p seq is not NULL * @post this is not singular */ - _Safe_local_iterator(const _Iterator& __i, size_t __bucket, + _Safe_local_iterator(const _Iterator& __i, size_type __bucket, const _Sequence* __seq) : _Safe_local_iterator_base(__seq, _M_constant()), _M_current(__i), _M_bucket(__bucket)