specific workaround for XCODE native
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
fc38315b49
commit
2a039701a8
@ -637,7 +637,11 @@
|
||||
#ifdef HAVE_WCSLEN
|
||||
#define wxWcslen wcslen
|
||||
#else
|
||||
static inline size_t wxWcslen(const wchar_t *s)
|
||||
#if defined( __WXMAC_XCODE__ ) && !defined( __cplusplus )
|
||||
/* xcode native targets are giving multiply defined symbols on regex */
|
||||
static
|
||||
#endif
|
||||
inline size_t wxWcslen(const wchar_t *s)
|
||||
{
|
||||
size_t n = 0;
|
||||
while ( *s++ )
|
||||
|
Loading…
Reference in New Issue
Block a user