VC 7.1 warning fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21811 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-07-09 21:20:56 +00:00
parent b6ed2b860c
commit cda66071f1

View File

@ -438,8 +438,11 @@ int wxEntry(int& argc, wxChar **argv)
{
::ExitProcess(3); // the same exit code as abort()
#if !defined(_MSC_VER) || _MSC_VER < 1300
// this code is unreachable but put it here to suppress warnings
// from some compilers
return -1;
#endif
}
}