Author: sebor
Date: Tue Mar 21 18:12:14 2006
New Revision: 387689
URL: http://svn.apache.org/viewcvs?rev=387689&view=rev
Log:
2006-03-21 Martin Sebor <[EMAIL PROTECTED]>
* char.cpp (test_rw_match): Cast character string macro argument
to the correct type.
Modified:
incubator/stdcxx/trunk/tests/self/0.char.cpp
Modified: incubator/stdcxx/trunk/tests/self/0.char.cpp
URL:
http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/tests/self/0.char.cpp?rev=387689&r1=387688&r2=387689&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/self/0.char.cpp (original)
+++ incubator/stdcxx/trunk/tests/self/0.char.cpp Tue Mar 21 18:12:14 2006
@@ -753,8 +753,8 @@
rw_assert (expect == result, \
0, __LINE__, \
"rw_match(%{#*s}, %{#*s}, %zu) == %zu, got %zu", \
- LEN (char, s1, len), s1, LEN (UserChar, s2, len), \
- s2, len, expect, result)
+ LEN (char, s1, len), s1, LEN (char, s2, len), s2, \
+ expect, result)
TEST (0, 0, -1, 0);
TEST ("", 0, -1, 0);