MdePkg Base.h: Use correct style to check macro _MSC_VER value

Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Liming Gao
2020-02-03 16:20:48 +08:00
committed by mergify[bot]
parent 21821933ae
commit 8778ee616a
3 changed files with 3 additions and 3 deletions

View File

@@ -101,7 +101,7 @@
//
#pragma warning ( disable : 4206 )
#if _MSC_VER == 1800 || _MSC_VER == 1900 || _MSC_VER >= 1910
#if defined(_MSC_VER) && _MSC_VER >= 1800
//
// Disable these warnings for VS2013.