From: Julian Smart Date: Sun, 22 May 2005 14:45:02 +0000 (+0000) Subject: Applied [ 1205187 ] fix may not return warning on vc6 (bug 1204692) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e5f679554c2ebc156e55929e083ee7612cbfe0ac?ds=inline Applied [ 1205187 ] fix may not return warning on vc6 (bug 1204692) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34255 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/main.cpp b/src/msw/main.cpp index 05b74c9e0a..173e046078 100644 --- a/src/msw/main.cpp +++ b/src/msw/main.cpp @@ -219,7 +219,7 @@ int wxEntry(int& argc, wxChar **argv) { wxFatalExit(); -#if !defined(__VISUALC__) || defined(__WXDEBUG__) +#if !defined(_MSC_VER) || defined(__WXDEBUG__) || (defined(_MSC_VER) && _MSC_VER <= 1200) // this code is unreachable but put it here to suppress warnings in some compilers // and disable for others to supress warnings too return -1;