diff options
author | Guo, Dongao <dongao.guo@intel.com> | 2018-09-26 17:45:43 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2018-09-28 12:48:43 +0800 |
commit | b9cee524e6c1941b77b6780e19bd57052e53249c (patch) | |
tree | 40821345061d1ecdbc9e0563ef932ad0bf456402 | |
parent | d75c07bc689d33564fb481c275f6fa4e0c62d9ef (diff) | |
download | edk2-b9cee524e6c1941b77b6780e19bd57052e53249c.zip edk2-b9cee524e6c1941b77b6780e19bd57052e53249c.tar.gz edk2-b9cee524e6c1941b77b6780e19bd57052e53249c.tar.bz2 |
MdeModulePkg/RegularExpressionDxe: modify inf to pass vs 2012 build
Add /wd4703 for passing VS 2012 build.This equals /wd4701 in VS2015.
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Dongao Guo <dongao.guo@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf b/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf index 7490a03..16e91bd 100644 --- a/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf +++ b/MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf @@ -84,7 +84,7 @@ INTEL:*_*_*_CC_FLAGS = /Oi-
# Oniguruma: potentially uninitialized local variable used
- MSFT:*_*_*_CC_FLAGS = /wd4701
+ MSFT:*_*_*_CC_FLAGS = /wd4701 /wd4703
# Oniguruma: intrinsic function not declared
MSFT:*_*_*_CC_FLAGS = /wd4164
|