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 <[EMAIL PROTECTED]>
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);