From f54debbae5f4089a9c05c22f481f942cde637903 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 28 Jul 2013 13:08:23 +0000 Subject: [PATCH] Work around missing mode_t definition with ICC. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/filefn.h b/include/wx/filefn.h index 66f835548f..a905d924ab 100644 --- a/include/wx/filefn.h +++ b/include/wx/filefn.h @@ -77,7 +77,7 @@ // constants // ---------------------------------------------------------------------------- -#if defined(__VISUALC__) || defined(__DIGITALMARS__) +#if defined(__VISUALC__) || defined(__INTELC__) || defined(__DIGITALMARS__) typedef int mode_t; #endif -- 2.47.2