summaryrefslogtreecommitdiffstats
path: root/MdePkg
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2006-11-18 05:02:54 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2006-11-18 05:02:54 +0000
commitda0559bf7325a1f5c7612dd0a6532c6be97b5294 (patch)
treeb991af3a2211659a645db0d09855c3b770e2320b /MdePkg
parent1ac034d883cd060584e502de2b29203a7d5b11de (diff)
downloadedk2-da0559bf7325a1f5c7612dd0a6532c6be97b5294.tar.gz
edk2-da0559bf7325a1f5c7612dd0a6532c6be97b5294.tar.bz2
edk2-da0559bf7325a1f5c7612dd0a6532c6be97b5294.zip
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
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Include/Ipf/ProcessorBind.h5
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 )