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 2008/05/12 17:22:37 UTC

svn commit: r655519 - /stdcxx/branches/4.3.x/tests/src/fnmatch.cpp

Author: faridz
Date: Mon May 12 08:22:37 2008
New Revision: 655519

URL: http://svn.apache.org/viewvc?rev=655519&view=rev
Log:
2008-05-12  Farid Zaripov  <fa...@epam.com>

	Merged r655518 from 4.2.x branch.
	* tests/src/fnmatch.cpp (rw_fnmatch) Use RW_ASSERT() instead of _RWSTD_ASSERT().

Modified:
    stdcxx/branches/4.3.x/tests/src/fnmatch.cpp

Modified: stdcxx/branches/4.3.x/tests/src/fnmatch.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/src/fnmatch.cpp?rev=655519&r1=655518&r2=655519&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/src/fnmatch.cpp (original)
+++ stdcxx/branches/4.3.x/tests/src/fnmatch.cpp Mon May 12 08:22:37 2008
@@ -126,8 +126,8 @@
 _TEST_EXPORT int
 rw_fnmatch (const char *pattern, const char *string, int arg)
 {
-    _RWSTD_ASSERT (pattern);
-    _RWSTD_ASSERT (string);
+    RW_ASSERT (pattern);
+    RW_ASSERT (string);
 
     const char *next = string;