]> git.saurik.com Git - wxWidgets.git/commitdiff
Work around missing mode_t definition with ICC.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 28 Jul 2013 13:08:23 +0000 (13:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 28 Jul 2013 13:08:23 +0000 (13:08 +0000)
Just handle it in the same way as MSVC.

Closes #15361.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74609 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/filefn.h

index 66f835548f3d3cab2d971edb4dd861ced34b088e..a905d924ab18337a95cf76eefc98ee87ffadeb80 100644 (file)
@@ -77,7 +77,7 @@
 // constants
 // ----------------------------------------------------------------------------
 
-#if defined(__VISUALC__) || defined(__DIGITALMARS__)
+#if defined(__VISUALC__) || defined(__INTELC__) || defined(__DIGITALMARS__)
     typedef int mode_t;
 #endif