Author: sebor
Date: Tue May 30 15:48:30 2006
New Revision: 410398
URL: http://svn.apache.org/viewvc?rev=410398&view=rev
Log:
2006-05-30 Martin Sebor <[EMAIL PROTECTED]>
* 21.strings.cpp (_rw_dispatch): Corrected the type of the test
function to match its actual definition in the test.
Modified:
incubator/stdcxx/trunk/tests/src/21.strings.cpp
Modified: incubator/stdcxx/trunk/tests/src/21.strings.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/src/21.strings.cpp?rev=410398&r1=410397&r2=410398&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/src/21.strings.cpp (original)
+++ incubator/stdcxx/trunk/tests/src/21.strings.cpp Tue May 30 15:48:30 2006
@@ -938,7 +938,7 @@
const StringTestCase &tcase)
{
typedef StringTestCaseData<charT> Data;
- typedef void TestFunc (charT, Traits*, Allocator*, const Data&);
+ typedef void TestFunc (charT*, Traits*, Allocator*, const Data&);
const size_t inx = func.char_id_ * 4 + func.traits_id_ * 2 +
func.alloc_id_;
@@ -946,7 +946,7 @@
const Data tdata (func, tcase);
- tfunc (charT (), (Traits*)0, (Allocator*)0, tdata);
+ tfunc ((charT*)0, (Traits*)0, (Allocator*)0, tdata);
}