From c2f22a1230cef5fb0aa370b243c67d3ce61ab931 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Sun, 19 May 2002 11:16:21 +0200 Subject: [PATCH] deque_operators.cc (test01): Fix minor typo in last commit. 2002-05-19 Paolo Carlini * testsuite/23_containers/deque_operators.cc (test01): Fix minor typo in last commit. From-SVN: r53619 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/testsuite/23_containers/deque_operators.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d903454dd01..e188bd70f1a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-05-19 Paolo Carlini + + * testsuite/23_containers/deque_operators.cc (test01): + Fix minor typo in last commit. + 2002-05-18 Paolo Carlini PR libstdc++/6503 diff --git a/libstdc++-v3/testsuite/23_containers/deque_operators.cc b/libstdc++-v3/testsuite/23_containers/deque_operators.cc index 19959fc506a..9585514c8de 100644 --- a/libstdc++-v3/testsuite/23_containers/deque_operators.cc +++ b/libstdc++-v3/testsuite/23_containers/deque_operators.cc @@ -41,7 +41,7 @@ void test01() VERIFY( constend == end ); VERIFY( beg != constend ); - VERIFY( constend != beg ); + VERIFY( constbeg != end ); VERIFY( beg < constend ); VERIFY( constbeg < end );