X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e87d78bb36f371d593137761158118fb09b69fa2..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/compiler.h diff --git a/include/wx/compiler.h b/include/wx/compiler.h index 163f6a58c5..e633ca158e 100644 --- a/include/wx/compiler.h +++ b/include/wx/compiler.h @@ -16,9 +16,15 @@ Compiler detection and related helpers. */ +/* + Notice that Intel compiler can be used as Microsoft Visual C++ add-on and + so we should define both __INTELC__ and __VISUALC__ for it. + */ #ifdef __INTEL_COMPILER # define __INTELC__ -#elif defined(_MSC_VER) +#endif + +#if defined(_MSC_VER) /* define another standard symbol for Microsoft Visual C++: the standard one (_MSC_VER) is also defined by some other compilers.