From: Vadim Zeitlin Date: Sun, 10 Mar 2002 18:36:35 +0000 (+0000) Subject: better fix (i.e. one which actually works) for VC++ warnings in release build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ac92c7e9486b386763ef7ece689a0c59b2622600 better fix (i.e. one which actually works) for VC++ warnings in release build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14544 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/helpbest.cpp b/src/msw/helpbest.cpp index 37de613612..01667e799c 100644 --- a/src/msw/helpbest.cpp +++ b/src/msw/helpbest.cpp @@ -94,8 +94,9 @@ wxString wxBestHelpController::GetValidFilename( const wxString& filename ) cons default: // we CAN'T get here wxFAIL_MSG( wxT("wxBestHelpController: Must call Initialize, first!") ); - return wxEmptyString; } + + return wxEmptyString; } #endif