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/03 19:08:51 UTC

svn commit: r581659 - /incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp

Author: faridz
Date: Wed Oct  3 10:08:49 2007
New Revision: 581659

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

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

Modified:
    incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp

Modified: incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp?rev=581659&r1=581658&r2=581659&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp (original)
+++ incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp Wed Oct  3 10:08:49 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);