X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/54705127970078c0cbce9f2ae76bc822acb0cf3c..c5d4360fc99a0b9bd512e9dc19087c96dc669345:/include/wx/msw/seh.h?ds=sidebyside diff --git a/include/wx/msw/seh.h b/include/wx/msw/seh.h index 7fcfb7a719..a331570d75 100644 --- a/include/wx/msw/seh.h +++ b/include/wx/msw/seh.h @@ -3,7 +3,6 @@ // Purpose: declarations for SEH (structured exceptions handling) support // Author: Vadim Zeitlin // Created: 2006-04-26 -// RCS-ID: $Id$ // Copyright: (c) 2006 Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -55,11 +54,11 @@ // as division by 0 or access violation) to C++ pseudo-exceptions extern void wxSETranslator(unsigned int code, EXCEPTION_POINTERS *ep); - // up to VC 9 this warning ("calling _set_se_translator() requires /EHa") + // up to VC 11 this warning ("calling _set_se_translator() requires /EHa") // is harmless and it's easier to suppress it than use different makefiles - // for VC5 and 6 (which don't support /EHa at all) and VC7 (which does + // for VC5 and 6 (which don't support /EHa at all) and VC7+ (which does // accept it but it seems to change nothing for it anyhow) - #if __VISUALC__ < 1600 + #if __VISUALC__ < 1800 #pragma warning(disable: 4535) #endif