diff options
author | 2023-08-30 23:49:57 -0700 | |
---|---|---|
committer | 2023-08-31 18:44:36 -0700 | |
commit | f8ae1619594dea652dfc2ea3c34a3d909b2c71a6 (patch) | |
tree | 73491fd57646f32e1a5ba20c5535ea2d8502c4f5 | |
parent | c1abb7214104f74acb2a403bbb7d1d8e067038b1 (diff) |
Include XmlDom.h for xml::XmlResource
The ~InlineXmlFormatParser method needs the complete class type so it
can destruct the queue_ field.
Fixes a build failure that happens after upgrading libc++.
Bug: b/175635923
Test: treehugger
Change-Id: I9f8e0c3535f6f015b322e12bdc8484b1b5dda09c
-rw-r--r-- | tools/aapt2/compile/InlineXmlFormatParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/compile/InlineXmlFormatParser.h b/tools/aapt2/compile/InlineXmlFormatParser.h index 4300023e7726..3a5161b828da 100644 --- a/tools/aapt2/compile/InlineXmlFormatParser.h +++ b/tools/aapt2/compile/InlineXmlFormatParser.h @@ -21,8 +21,8 @@ #include <vector> #include "android-base/macros.h" - #include "process/IResourceTableConsumer.h" +#include "xml/XmlDom.h" namespace aapt { |