mirror of https://github.com/acidanthera/audk.git
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:
parent
1ac034d883
commit
da0559bf73
|
@ -54,6 +54,11 @@
|
||||||
//
|
//
|
||||||
#pragma warning ( disable : 4057 )
|
#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
|
// ASSERT(FALSE) or while (TRUE) are legal constructes so supress this warning
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue