This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[v3, obvious] Minor fix to deque_operators testcase


Hi,

I have just committed under the obvious rule the following minor fix to 
a new testcase added yesterday.

Ciao, Paolo.

/////////////////

2002-05-19  Paolo Carlini  <pcarlini@unitus.it>

        * testsuite/23_containers/deque_operators.cc (test01):
        Fix minor typo in last commit.

===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/23_containers/deque_operators.cc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gcc/libstdc++-v3/testsuite/23_containers/deque_operators.cc	2002/05/18 15:10:24	1.1
+++ gcc/libstdc++-v3/testsuite/23_containers/deque_operators.cc	2002/05/19 09:16:21	1.2
@@ -41,7 +41,7 @@
   VERIFY( constend == end );
 
   VERIFY( beg != constend );
-  VERIFY( constend != beg );
+  VERIFY( constbeg != end );
 
   VERIFY( beg < constend );
   VERIFY( constbeg < end );







Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]