Author: sebor
Date: Thu Feb  9 12:35:52 2006
New Revision: 376431

URL: http://svn.apache.org/viewcvs?rev=376431&view=rev
Log:
2006-02-09  Martin Sebor  <[EMAIL PROTECTED]>

        * 25.includes.cpp: Corercted a logic error preventing the predicate
        form of the algorithm from being exercised.

Modified:
    incubator/stdcxx/trunk/tests/algorithms/25.includes.cpp

Modified: incubator/stdcxx/trunk/tests/algorithms/25.includes.cpp
URL: 
http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/tests/algorithms/25.includes.cpp?rev=376431&r1=376430&r2=376431&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/algorithms/25.includes.cpp (original)
+++ incubator/stdcxx/trunk/tests/algorithms/25.includes.cpp Thu Feb  9 12:35:52 
2006
@@ -303,7 +303,7 @@
                  "std::includes predicate test disabled");
     }
     else {
-        test_includes ((X*)0, (Less<X>*)0);
+        test_includes ((X*)0, (Less<X>*)1);
     }
 
     return 0;


Reply via email to