summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Ia32
diff options
context:
space:
mode:
authorjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-09-05 01:43:14 +0000
committerjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-09-05 01:43:14 +0000
commit22a8f52f8ee52afbe33c5e47ac8389be44944c7c (patch)
treeff50f1da0ad764912cd17bff06e019128ad1f5f0 /MdePkg/Include/Ia32
parentca40209e2caed3cbdd5d124a65789237f3bff95c (diff)
downloadedk2-22a8f52f8ee52afbe33c5e47ac8389be44944c7c.tar.gz
edk2-22a8f52f8ee52afbe33c5e47ac8389be44944c7c.tar.bz2
edk2-22a8f52f8ee52afbe33c5e47ac8389be44944c7c.zip
Added two #pragma to disable 4505 & 4206 warnings for MSFT compiler. This is for compiling source files with pre-compiled header file.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1442 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Ia32')
-rw-r--r--MdePkg/Include/Ia32/ProcessorBind.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/MdePkg/Include/Ia32/ProcessorBind.h b/MdePkg/Include/Ia32/ProcessorBind.h
index 2ed3a02ee3..e0ddba4fe5 100644
--- a/MdePkg/Include/Ia32/ProcessorBind.h
+++ b/MdePkg/Include/Ia32/ProcessorBind.h
@@ -57,6 +57,15 @@
//
#pragma warning ( disable : 4127 )
+//
+// This warning is caused by functions defined but not used. For precompiled header only.
+//
+#pragma warning ( disable : 4505 )
+
+//
+// This warning is caused by empty (after preprocessing) souce file. For precompiled header only.
+//
+#pragma warning ( disable : 4206 )
#endif