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:
@@ -219,7 +219,7 @@ int wxEntry(int& argc, wxChar **argv)
|
|||||||
{
|
{
|
||||||
wxFatalExit();
|
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
|
// this code is unreachable but put it here to suppress warnings in some compilers
|
||||||
// and disable for others to supress warnings too
|
// and disable for others to supress warnings too
|
||||||
return -1;
|
return -1;
|
||||||
|
Reference in New Issue
Block a user