From: Vadim Zeitlin Date: Wed, 17 Sep 2003 17:09:23 +0000 (+0000) Subject: corrected wxCATCH_ALL usage X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f0658b1e1e56c52612029f9891115cc61adcaeb1 corrected wxCATCH_ALL usage git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/scopeguard.h b/include/wx/scopeguard.h index c1f3536dde..f595c046c7 100644 --- a/include/wx/scopeguard.h +++ b/include/wx/scopeguard.h @@ -41,7 +41,7 @@ namespace wxPrivate { guard.Execute(); } - wxCATCH_ALL() // do nothing, just eat the exception + wxCATCH_ALL(;) // do nothing, just eat the exception } }