]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/compiler.h
Use wxGetTranslation() instead of _() in the public headers.
[wxWidgets.git] / include / wx / compiler.h
index 163f6a58c5313ff822c821e5ff70e61ac8603dc5..e633ca158e0476f150326679f5bebf3115b99062 100644 (file)
     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.