From: Mattia Barbon Date: Sat, 28 Jun 2003 20:56:40 +0000 (+0000) Subject: Stop GCC from complaining about unhandled enumeration values. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/695578271d97f6c7021c8769b59e966e2c10d715 Stop GCC from complaining about unhandled enumeration values. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21491 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp index bc79244d0b..770ea11fe2 100644 --- a/src/msw/utils.cpp +++ b/src/msw/utils.cpp @@ -1097,6 +1097,8 @@ extern long wxEncodingToCharset(wxFontEncoding encoding) case wxFONTENCODING_CP437: return OEM_CHARSET; + default: // fix GCC warning + return -1; } // no way to translate this encoding into a Windows charset