summaryrefslogtreecommitdiff
path: root/ace/OS_String.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_String.inl')
-rw-r--r--ace/OS_String.inl8
1 files changed, 0 insertions, 8 deletions
diff --git a/ace/OS_String.inl b/ace/OS_String.inl
index 6f2e8e79583..5d5df6564b1 100644
--- a/ace/OS_String.inl
+++ b/ace/OS_String.inl
@@ -463,11 +463,7 @@ ACE_OS_String::strstr (const wchar_t *s, const wchar_t *t)
# if defined (ACE_LACKS_WCSSTR)
return ACE_OS_String::wcsstr_emulation (s, t);
# else /* ACE_LACKS_WCSSTR */
-# if defined (ACE_HAS_XPG4_MULTIBYTE_CHAR)
- return (const wchar_t *) ::wcswcs (s, t);
-# else
return (const wchar_t *) ::wcsstr (s, t);
-# endif /* ACE_HAS_XPG4_MULTIBYTE_CHAR */
# endif /* ACE_LACKS_WCSSTR */
}
#endif /* ACE_HAS_WCHAR */
@@ -489,11 +485,7 @@ ACE_OS_String::strstr (wchar_t *s, const wchar_t *t)
# if defined (ACE_LACKS_WCSSTR)
return ACE_OS_String::wcsstr_emulation (s, t);
# else /* ACE_LACKS_WCSSTR */
-# if defined (ACE_HAS_XPG4_MULTIBYTE_CHAR)
- return ::wcswcs (s, t);
-# else
return ::wcsstr (s, t);
-# endif /* ACE_HAS_XPG4_MULTIBYTE_CHAR */
# endif /* ACE_LACKS_WCSSTR */
}
#endif /* ACE_HAS_WCHAR */