Skip to content

Commit

Permalink
ECC: fix Boolean array variable check.
Browse files Browse the repository at this point in the history
git-svn-id: https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools@1284 7335b38e-4728-0410-8992-fb3ffe349368
  • Loading branch information
jlin16 committed Jul 15, 2008
1 parent b138e3a commit 9c7855f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/Python/Ecc/c.py
Expand Up @@ -771,6 +771,9 @@ def GetDataTypeFromModifier(ModifierStr):
for M in MList:
if M in EccGlobalData.gConfig.ModifierList:
MList.remove(M)
# remove array sufix
if M.startswith('['):
MList.remove(M)

ReturnType = ''
for M in MList:
Expand Down

0 comments on commit 9c7855f

Please sign in to comment.