X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/33a7c3dd0b63722bfc465f0bbc67ec376a0a74ee..673e6120795e4e1f3a49157581925a5ee14bf5a9:/src/common/wxchar.cpp diff --git a/src/common/wxchar.cpp b/src/common/wxchar.cpp index ea026cb10c..7e6c8f21f4 100644 --- a/src/common/wxchar.cpp +++ b/src/common/wxchar.cpp @@ -6,7 +6,7 @@ // Created: 09/04/99 // RCS-ID: $Id$ // Copyright: (c) wxWindows copyright -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ @@ -47,6 +47,10 @@ #include #endif +#if defined(__MWERKS__) && __MSL__ >= 0x6000 +using namespace std ; +#endif + #if wxUSE_WCHAR_T size_t WXDLLEXPORT wxMB2WC(wchar_t *buf, const char *psz, size_t n) { @@ -848,7 +852,6 @@ int wxFscanf( FILE *stream, const wxChar *format, ... ) { va_list argptr; va_start(argptr, format); - int ret = vfwscanf(stream, wxFormatConverter(format), argptr); va_end(argptr);