X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ac11db3a7717f6b07b1283b3433222cee93e3ac2..57436bb7dbd331de64d05007960aa1fc966f8de9:/src/common/strconv.cpp diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index dad4598c23..3508ac1c8b 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -78,7 +78,7 @@ #define TRACE_STRCONV _T("strconv") -#ifdef SIZEOF_WCHAR_T == 2 +#if SIZEOF_WCHAR_T == 2 #define WC_UTF16 #endif @@ -527,7 +527,7 @@ size_t wxMBConvUTF7::WC2MB(char *buf, const wchar_t *psz, size_t n) const { // BASE64 encode string unsigned int lsb, d, l; - for (d = 0, l = 0;; psz++) + for (d = 0, l = 0; /*nothing*/; psz++) { for (lsb = 0; lsb < 2; lsb ++) {