diff options
author | Adam Mitz <mitza@ociweb.com> | 2015-12-01 08:55:47 -0600 |
---|---|---|
committer | Adam Mitz <mitza@ociweb.com> | 2015-12-01 08:55:47 -0600 |
commit | 632965675959305bcccba0b67cc594b2b794d5a7 (patch) | |
tree | 445f49089a15db45215c212c037a0c6dba3c9be3 /ACE | |
parent | f8f3435620aefc51a4e5cfe49ccc185f1ce16977 (diff) | |
download | ATCD-632965675959305bcccba0b67cc594b2b794d5a7.tar.gz |
Fix for platforms with ACE_LACKS_WCSRTOMBS defined.
Diffstat (limited to 'ACE')
-rw-r--r-- | ACE/ace/OS_NS_stdio.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ACE/ace/OS_NS_stdio.cpp b/ACE/ace/OS_NS_stdio.cpp index bfe4c76bc30..03907f3c21c 100644 --- a/ACE/ace/OS_NS_stdio.cpp +++ b/ACE/ace/OS_NS_stdio.cpp @@ -503,7 +503,9 @@ ACE_OS::vaswprintf_emulation(wchar_t **bufp, const wchar_t *format, va_list argp typedef int wint_t; #elif !defined ACE_LACKS_WCHAR_STD_NAMESPACE using std::wint_t; +# ifndef ACE_LACKS_WCSRTOMBS using std::wcsrtombs; +# endif #endif namespace { // helpers for vsnprintf_emulation |