From 6446106eb7562f91cbe48a8b746e861a73943bb0 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 30 Oct 2001 19:14:20 +0100 Subject: [PATCH] stl_deque.h (_M_new_elements_at_front): Use __throw_exception_again. * include/bits/stl_deque.h (_M_new_elements_at_front): Use __throw_exception_again. (_M_new_elements_at_back): Likewise. From-SVN: r46647 --- libstdc++-v3/ChangeLog | 6 ++++++ libstdc++-v3/include/bits/stl_deque.h | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 8363e9bcbcb..438183b36fd 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2001-10-30 Jakub Jelinek + + * include/bits/stl_deque.h (_M_new_elements_at_front): Use + __throw_exception_again. + (_M_new_elements_at_back): Likewise. + 2001-10-29 Benjamin Kosnik libstdc++/3647 diff --git a/libstdc++-v3/include/bits/stl_deque.h b/libstdc++-v3/include/bits/stl_deque.h index 1024252ddfa..7cc4492040b 100644 --- a/libstdc++-v3/include/bits/stl_deque.h +++ b/libstdc++-v3/include/bits/stl_deque.h @@ -1342,7 +1342,7 @@ void deque<_Tp,_Alloc>::_M_new_elements_at_front(size_type __new_elems) catch(...) { for (size_type __j = 1; __j < __i; ++__j) _M_deallocate_node(*(_M_start._M_node - __j)); - throw; + __throw_exception_again; } } @@ -1360,7 +1360,7 @@ void deque<_Tp,_Alloc>::_M_new_elements_at_back(size_type __new_elems) catch(...) { for (size_type __j = 1; __j < __i; ++__j) _M_deallocate_node(*(_M_finish._M_node + __j)); - throw; + __throw_exception_again; } } -- 2.30.2