Skip to content

Commit c322914

Browse files
authored
Merge pull request #2458 from jwillemsen/jwi-mingw32cleanup
Removed ancient workaround for mingw32
2 parents d4ff246 + 8628cdc commit c322914

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

ACE/ace/OS_NS_stdio.inl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,12 +1064,6 @@ ACE_OS::vsprintf (wchar_t *buffer, const wchar_t *format, va_list argptr)
10641064
// ACE_OS::snprintf().
10651065
return vswprintf (buffer, 4096, format, argptr);
10661066

1067-
# elif defined (__MINGW64_VERSION_MAJOR) && !defined (WIN64)
1068-
// the MingW64 32bit version causes link errors when using the
1069-
// 'standard' vswprint(). Luckily they have a mingw special.
1070-
1071-
return __mingw_vswprintf (buffer, format, argptr);
1072-
10731067
# elif defined (ACE_WIN32)
10741068
// Windows has vswprintf, but the pre-VC8 signature is from the older
10751069
// ISO C standard. Also see ACE_OS::snprintf() for more info on this.

0 commit comments

Comments
 (0)