diff options
Diffstat (limited to 'tools/aapt2/process/SymbolTable.cpp')
-rw-r--r-- | tools/aapt2/process/SymbolTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/process/SymbolTable.cpp b/tools/aapt2/process/SymbolTable.cpp index 3cae0e8ae462..2e97a2f3ae7f 100644 --- a/tools/aapt2/process/SymbolTable.cpp +++ b/tools/aapt2/process/SymbolTable.cpp @@ -243,7 +243,7 @@ static std::unique_ptr<SymbolTable::Symbol> LookupAttributeInTable( // Check to see if it is an attribute. for (size_t i = 0; i < (size_t)count; i++) { if (entry[i].map.name.ident == android::ResTable_map::ATTR_TYPE) { - s->attribute = std::make_shared<Attribute>(false, entry[i].map.value.data); + s->attribute = std::make_shared<Attribute>(entry[i].map.value.data); break; } } |