diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2003-09-23 00:52:40 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-23 04:46:48 +0000 |
commit | 94b00aa4f6d0e3121d1899787c01f0f36ecb4f6e (patch) | |
tree | 2179fcd4d952bb257a0bcc674a23b210d849e2a7 | |
parent | fdabeebc3413e04ccb1a18bb0b9945494795b944 (diff) | |
download | perl-94b00aa4f6d0e3121d1899787c01f0f36ecb4f6e.tar.gz |
RC5 and Intel's ICC
From: "Marcus Holland-Moritz" <mhx-perl@gmx.net>
Message-ID: <00a101c3814b$76a8cc50$0c2f1fac@R2D2>
(the attribute part)
p4raw-id: //depot/perl@21326
-rw-r--r-- | ext/Devel/PPPort/PPPort.pm | 3 | ||||
-rw-r--r-- | perl.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/ext/Devel/PPPort/PPPort.pm b/ext/Devel/PPPort/PPPort.pm index 9793c681f4..d97832eeb0 100644 --- a/ext/Devel/PPPort/PPPort.pm +++ b/ext/Devel/PPPort/PPPort.pm @@ -103,7 +103,6 @@ even if available, access to a fixed interface): PERL_REVISION PERL_SUBVERSION PERL_UNUSED_DECL - PERL_UNUSED_DECL PERL_VERSION PL_compiling PL_copline @@ -418,7 +417,7 @@ __DATA__ #endif #ifdef HASATTRIBUTE -# if defined(__GNUC__) && defined(__cplusplus) +# if (defined(__GNUC__) && defined(__cplusplus)) || defined(__INTEL_COMPILER) # define PERL_UNUSED_DECL # else # define PERL_UNUSED_DECL __attribute__((unused)) @@ -128,7 +128,7 @@ #endif #ifdef HASATTRIBUTE -# if defined(__GNUC__) && defined(__cplusplus) +# if (defined(__GNUC__) && defined(__cplusplus)) || defined(__INTEL_COMPILER) # define PERL_UNUSED_DECL # else # define PERL_UNUSED_DECL __attribute__((unused)) |