diff options
Diffstat (limited to 'runtime/elf_file_impl.h')
-rw-r--r-- | runtime/elf_file_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/elf_file_impl.h b/runtime/elf_file_impl.h index 8fd8044177..26d960e01a 100644 --- a/runtime/elf_file_impl.h +++ b/runtime/elf_file_impl.h @@ -150,7 +150,7 @@ class ElfFileImpl { Elf_Word GetHashBucket(size_t i, bool* ok) const; Elf_Word GetHashChain(size_t i, bool* ok) const; - typedef std::map<std::string, Elf_Sym*> SymbolTable; + using SymbolTable = std::map<std::string, Elf_Sym*>; SymbolTable** GetSymbolTable(Elf_Word section_type); bool ValidPointer(const uint8_t* start) const; |