diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-11-18 05:02:54 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-11-18 05:02:54 +0000 |
commit | da0559bf7325a1f5c7612dd0a6532c6be97b5294 (patch) | |
tree | b991af3a2211659a645db0d09855c3b770e2320b | |
parent | 1ac034d883cd060584e502de2b29203a7d5b11de (diff) | |
download | edk2-platforms-da0559bf7325a1f5c7612dd0a6532c6be97b5294.tar.xz |
Disable warning when assigning a function pointer to a data pointer
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1976 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Include/Ipf/ProcessorBind.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MdePkg/Include/Ipf/ProcessorBind.h b/MdePkg/Include/Ipf/ProcessorBind.h index f3706a782a..0d8b9e9cca 100644 --- a/MdePkg/Include/Ipf/ProcessorBind.h +++ b/MdePkg/Include/Ipf/ProcessorBind.h @@ -55,6 +55,11 @@ #pragma warning ( disable : 4057 )
//
+// Disable warning on conversion from function pointer to a data pointer
+//
+#pragma warning ( disable : 4054 )
+
+//
// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning
//
#pragma warning ( disable : 4127 )
|