]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for vc4.2+ for c++ standard exception handling
authorUnknown (UG) <nobody@localhost>
Wed, 14 Oct 1998 16:29:51 +0000 (16:29 +0000)
committerUnknown (UG) <nobody@localhost>
Wed, 14 Oct 1998 16:29:51 +0000 (16:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@823 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h

index 694b31a7cd8a499df861ef2187109ad54d648082..f8b01d2c3337f407251e7736f43cb67689dcd187 100644 (file)
@@ -280,6 +280,13 @@ WXDLLEXPORT_DATA(extern const bool) wxFalse;
 
 #endif  // VC++
 
+#if _MSC_VER > 1010
+#undef try
+#undef except
+#undef finally
+#define except(x) catch(...)
+#endif
+
 // Callback function type definition
 typedef void (*wxFunction) (wxObject&, wxEvent&);