diff options
Diffstat (limited to 'tools/aapt2/process/SymbolTable.h')
-rw-r--r-- | tools/aapt2/process/SymbolTable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/process/SymbolTable.h b/tools/aapt2/process/SymbolTable.h index e684bb06f1f5..43f4dd7fb869 100644 --- a/tools/aapt2/process/SymbolTable.h +++ b/tools/aapt2/process/SymbolTable.h @@ -34,7 +34,7 @@ namespace aapt { inline android::hash_t hash_type(const ResourceName& name) { - std::hash<std::u16string> strHash; + std::hash<std::string> strHash; android::hash_t hash = 0; hash = android::JenkinsHashMix(hash, (uint32_t) strHash(name.package)); hash = android::JenkinsHashMix(hash, (uint32_t) name.type); |