summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdio.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-01-06 18:30:18 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-01-06 18:30:18 +0100
commit3146fe23c9e8e7ed65d05814128b4b6eca6f98ab (patch)
treeef326cd8ecd31acd8a04ba59996687f5ea8f0637 /ACE/ace/OS_NS_stdio.inl
parent1378f952ac8380b0c624a802ec1d747426d59197 (diff)
downloadATCD-3146fe23c9e8e7ed65d05814128b4b6eca6f98ab.tar.gz
Cleanup usage of ACE_HAS_DINKUM_STL, not set anymore in any config file
* ACE/ace/OS_NS_stdio.inl: * ACE/ace/README: * ACE/ace/os_include/os_time.h:
Diffstat (limited to 'ACE/ace/OS_NS_stdio.inl')
-rw-r--r--ACE/ace/OS_NS_stdio.inl4
1 files changed, 1 insertions, 3 deletions
diff --git a/ACE/ace/OS_NS_stdio.inl b/ACE/ace/OS_NS_stdio.inl
index 1cd8d54567b..f17002c630e 100644
--- a/ACE/ace/OS_NS_stdio.inl
+++ b/ACE/ace/OS_NS_stdio.inl
@@ -1127,7 +1127,6 @@ ACE_OS::vsprintf (wchar_t *buffer, const wchar_t *format, va_list argptr)
{
# if (defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) >= 500) || \
(defined (sun) && !(defined(_XOPEN_SOURCE) && (_XOPEN_VERSION-0==4))) || \
- defined (ACE_HAS_DINKUM_STL) || \
defined (ACE_HAS_VSWPRINTF) || \
(defined (_MSC_VER) && !defined (ACE_HAS_WINCE))
@@ -1156,7 +1155,7 @@ ACE_OS::vsprintf (wchar_t *buffer, const wchar_t *format, va_list argptr)
ACE_UNUSED_ARG (argptr);
ACE_NOTSUP_RETURN (-1);
-# endif /* XPG5 || ACE_HAS_DINKUM_STL */
+# endif /* XPG5 */
}
#endif /* ACE_HAS_WCHAR */
@@ -1208,7 +1207,6 @@ ACE_OS::vsnprintf (wchar_t *buffer, size_t maxlen, const wchar_t *format, va_lis
{
# if (defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) >= 500) || \
(defined (sun) && !(defined(_XOPEN_SOURCE) && (_XOPEN_VERSION-0==4))) || \
- (defined (ACE_HAS_DINKUM_STL)) || \
defined (ACE_HAS_VSWPRINTF) || \
defined (ACE_WIN32)