mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
8d4c9bbd32
Poked by: joe
15 lines
279 B
C++
15 lines
279 B
C++
|
|
$FreeBSD$
|
|
|
|
--- src/common/strconv.cpp 2002/09/09 13:18:00 1.1
|
|
+++ src/common/strconv.cpp 2002/09/09 13:18:10
|
|
@@ -358,7 +358,7 @@
|
|
#if defined(__BORLANDC__) && (__BORLANDC__ > 0x530)
|
|
return std::wcslen(psz);
|
|
#else
|
|
- return ::wcslen(psz);
|
|
+ return wcslen(psz);
|
|
#endif
|
|
}
|
|
|