Skip to content
Snippets Groups Projects
Commit e5017318 authored by Tri Vo's avatar Tri Vo Committed by android-build-merger
Browse files

Merge "Silence expandtypeattribute build-time warning."

am: 969d8cc4

Change-Id: I31f387a654065d5311a3f7b484a9833c0d5ba973
parents f7066845 969d8cc4
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,9 @@ class MiniCilParser: ...@@ -77,6 +77,9 @@ class MiniCilParser:
self._parseTypeattribute(stmt) self._parseTypeattribute(stmt)
elif re.match(r"typeattributeset\s+.+", stmt): elif re.match(r"typeattributeset\s+.+", stmt):
self._parseTypeattributeset(stmt) self._parseTypeattributeset(stmt)
elif re.match(r"expandtypeattribute\s+.+", stmt):
# To silence the build warnings.
pass
else: else:
m = re.match(r"(\w+)\s+.+", stmt) m = re.match(r"(\w+)\s+.+", stmt)
ret = "Warning: Unknown statement type (" + m.group(1) + ") in " ret = "Warning: Unknown statement type (" + m.group(1) + ") in "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment