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
This commit is contained in:
mdkinney 2006-11-18 05:02:54 +00:00
parent 1ac034d883
commit da0559bf73
1 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,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
//