wchar_t byte-swapping is not necessary if __STDC_ISO_10646__ is defined.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9607 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven 2001-03-29 13:19:50 +00:00
parent f967115097
commit d43088ee78

View File

@ -55,7 +55,7 @@
#include "wx/debug.h"
#include "wx/strconv.h"
#ifdef WORDS_BIGENDIAN
#if defined(WORDS_BIGENDIAN) || defined(__STDC_ISO_10646__)
#define BSWAP_UCS4(str, len)
#define BSWAP_UCS2(str, len)
#else