You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2007/10/26 20:41:14 UTC

svn commit: r588739 - /incubator/stdcxx/branches/4.2.x/tests/regress/23.vector.bool.stdcxx-235.cpp

Author: faridz
Date: Fri Oct 26 11:41:14 2007
New Revision: 588739

URL: http://svn.apache.org/viewvc?rev=588739&view=rev
Log:
2007-10-26 Farid Zaripov <fa...@epam.com>

	Merged r581659 from trunk
	* 23.vector.bool.stdcxx-235.cpp (main): Corrected the
	lines which are testing the operator!=.

Modified:
    incubator/stdcxx/branches/4.2.x/tests/regress/23.vector.bool.stdcxx-235.cpp

Modified: incubator/stdcxx/branches/4.2.x/tests/regress/23.vector.bool.stdcxx-235.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/tests/regress/23.vector.bool.stdcxx-235.cpp?rev=588739&r1=588738&r2=588739&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/tests/regress/23.vector.bool.stdcxx-235.cpp (original)
+++ incubator/stdcxx/branches/4.2.x/tests/regress/23.vector.bool.stdcxx-235.cpp Fri Oct 26 11:41:14 2007
@@ -42,8 +42,8 @@
     assert (cbegin == begin);
     assert (begin  == cbegin);
 
-    assert (!(cbegin == begin));
-    assert (!(begin  == cbegin));
+    assert (!(cbegin != begin));
+    assert (!(begin  != cbegin));
 
     assert (cbegin <= begin);
     assert (begin  <= cbegin);