From ce9fa570f07f0c22f03e9ee397acf86a975c254f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 28 Aug 2014 12:37:16 +0000 Subject: [PATCH] Fix harmless warning about unreachable statement when wxUSE_EXCEPTIONS==0. This statement only needed when we do use exceptions. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/event.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/event.cpp b/src/common/event.cpp index a1c36c1e80..eb5070ad4f 100644 --- a/src/common/event.cpp +++ b/src/common/event.cpp @@ -1674,9 +1674,9 @@ bool wxEvtHandler::SafelyProcessEvent(wxEvent& event) } } } -#endif // wxUSE_EXCEPTIONS return false; +#endif // wxUSE_EXCEPTIONS } bool wxEvtHandler::SearchEventTable(wxEventTable& table, wxEvent& event)