]> git.saurik.com Git - wxWidgets.git/commitdiff
VC 7.1 warning fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 9 Jul 2003 21:20:56 +0000 (21:20 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 9 Jul 2003 21:20:56 +0000 (21:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21811 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/init.cpp

index 4db4aab90d4e9a8194568d51f783af64a71114de..c25c12cd866653d23ffe38d4378390e24f76515a 100644 (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
     }
 }