diff options
author | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-01 09:23:46 +0000 |
---|---|---|
committer | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-01 09:23:46 +0000 |
commit | 59a7e4f4bd159d4e91d29410ce0c3fa03646c363 (patch) | |
tree | ee58dc8434f0289a89f5feeb2548e4a487804548 /EdkCompatibilityPkg/Foundation/Include/X64 | |
parent | 29666911f7291658004e1732514ed8ebf7040f13 (diff) | |
download | edk2-platforms-59a7e4f4bd159d4e91d29410ce0c3fa03646c363.tar.xz |
For ECP, disable ICC's remark #869: "Parameter" was never referenced warning.
This is legal ANSI C code so we disable the remark that is turned on with -Wall
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7383 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Include/X64')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Include/X64/EfiBind.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Include/X64/EfiBind.h b/EdkCompatibilityPkg/Foundation/Include/X64/EfiBind.h index c0180e72b2..d3bf5a077e 100644 --- a/EdkCompatibilityPkg/Foundation/Include/X64/EfiBind.h +++ b/EdkCompatibilityPkg/Foundation/Include/X64/EfiBind.h @@ -66,6 +66,12 @@ Abstract: //
#pragma warning ( disable : 1419 )
+//
+// Disable ICC's remark #869: "Parameter" was never referenced warning.
+// This is legal ANSI C code so we disable the remark that is turned on with -Wall
+//
+#pragma warning ( disable : 869 )
+
#endif
|