diff options
author | Carsey, Jaben </o=Intel/ou=Americas01/cn=Workers/cn=Carsey, Jaben> | 2018-03-08 08:45:18 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-03-09 17:39:38 +0800 |
commit | 7878f706e7eb8f29f66961d20eaa3e97dac22b00 (patch) | |
tree | 97264f804b66620e80b8a3bfadaa4ddde2ecd306 /BaseTools/Source/Python/Common | |
parent | b31501c90abcea74c03e86a3bd9f6190cb4e1ddd (diff) | |
download | edk2-7878f706e7eb8f29f66961d20eaa3e97dac22b00.tar.gz edk2-7878f706e7eb8f29f66961d20eaa3e97dac22b00.tar.bz2 edk2-7878f706e7eb8f29f66961d20eaa3e97dac22b00.zip |
BaseTools: GlobalData remove unused variable
gWideStringPattern is not used.
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Common')
-rw-r--r-- | BaseTools/Source/Python/Common/GlobalData.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/Common/GlobalData.py b/BaseTools/Source/Python/Common/GlobalData.py index f7d4d577f9..8b36a1b773 100644 --- a/BaseTools/Source/Python/Common/GlobalData.py +++ b/BaseTools/Source/Python/Common/GlobalData.py @@ -47,8 +47,7 @@ gDefaultStores = [] gMacroRefPattern = re.compile("\$\(([A-Z][_A-Z0-9]*)\)", re.UNICODE)
gMacroDefPattern = re.compile("^(DEFINE|EDK_GLOBAL)[ \t]+")
gMacroNamePattern = re.compile("^[A-Z][A-Z0-9_]*$")
-# C-style wide string pattern
-gWideStringPattern = re.compile('(\W|\A)L"')
+
#
# A global variable for whether current build in AutoGen phase or not.
#
|