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

Merge "Silence expandtypeattribute build-time warning." am: 969d8cc4 am: e5017318

am: 067bc406

Change-Id: I3c71ec9699fae580c374c6e22eb2eae62a2d49b1
parents a9d3532b 067bc406
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.
Finish editing this message first!
Please register or to comment