]> git.saurik.com Git - wxWidgets.git/commitdiff
fix VC++ warning in debug build after latest fix to warning in release
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 May 2005 10:55:43 +0000 (10:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 May 2005 10:55:43 +0000 (10:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33983 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/main.cpp

index 76b9064c08f6597f6c925f3893092d742509848b..05b74c9e0ae6e4d4f46a9d89cf3e731eed36c3c8 100644 (file)
@@ -219,11 +219,11 @@ int wxEntry(int& argc, wxChar **argv)
     {
         wxFatalExit();
 
     {
         wxFatalExit();
 
-#ifndef __VISUALC__
+#if !defined(__VISUALC__) || defined(__WXDEBUG__)
         // this code is unreachable but put it here to suppress warnings in some compilers
         // and disable for others to supress warnings too
         return -1;
         // this code is unreachable but put it here to suppress warnings in some compilers
         // and disable for others to supress warnings too
         return -1;
-#endif // !__VISUALC__
+#endif // !__VISUALC__ in release build
     }
 }
 
     }
 }