diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2011-07-20 09:40:11 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2011-07-20 09:40:11 +0000 |
commit | d28d43815b736e0ab88b5056744f192d06985649 (patch) | |
tree | 1fc6ad692d27fc3093573eebd310f41b624a46a5 | |
parent | b0e43da8fb5cef8036f19e4ca75d6862d64cdd22 (diff) | |
download | gcc-d28d43815b736e0ab88b5056744f192d06985649.zip gcc-d28d43815b736e0ab88b5056744f192d06985649.tar.gz gcc-d28d43815b736e0ab88b5056744f192d06985649.tar.bz2 |
safe_local_iterator.h (_Safe_local_iterator<>:: _Safe_local_iterator(const _Iterator&, size_type, const _Sequence*)): Fix typo.
2011-07-20 Paolo Carlini <paolo.carlini@oracle.com>
* include/debug/safe_local_iterator.h (_Safe_local_iterator<>::
_Safe_local_iterator(const _Iterator&, size_type, const _Sequence*)):
Fix typo.
From-SVN: r176500
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/safe_local_iterator.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b848ce6..519f9cb 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2011-07-20 Paolo Carlini <paolo.carlini@oracle.com> + + * 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 <francois.cppdevs@free.fr> * 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 a204f28..de0cbee 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) |