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
This commit is contained in:
Julian Smart
2005-05-22 14:45:02 +00:00
parent 80f3a6b0aa
commit e5f679554c

View File

@@ -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;