Update comment and documentation related to C4535 MSVC warning

Update the compiler version in the comment and explain how/when to
update it in the future.
This commit is contained in:
Vadim Zeitlin
2019-07-13 16:31:19 +02:00
parent 59245dd232
commit 53f40b5029
2 changed files with 11 additions and 3 deletions

View File

@@ -54,9 +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 12 this warning ("calling _set_se_translator() requires /EHa")
// is harmless and it's easier to suppress it than deal with it as make/
// project file level as it seems to be harmless
// This warning ("calling _set_se_translator() requires /EHa") seems to be
// harmless with all the supported MSVC versions (up to 14.2, a.k.a. MSVS
// 2019), i.e. SEH translator seems to work just fine without /EHa too, so
// suppress it here as it's easier to suppress it than deal with it at
// make/ project files level.
#if __VISUALC__ < 2000
#pragma warning(disable: 4535)
#endif