diff options
Diffstat (limited to 'runtime/elf_utils.h')
-rw-r--r-- | runtime/elf_utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/elf_utils.h b/runtime/elf_utils.h index 676cd522e6..7b00bada47 100644 --- a/runtime/elf_utils.h +++ b/runtime/elf_utils.h @@ -24,6 +24,8 @@ #include "base/logging.h" +namespace art { + // Architecture dependent flags for the ELF header. #define EF_ARM_EABI_VER5 0x05000000 #define EF_MIPS_ABI_O32 0x00001000 @@ -163,4 +165,6 @@ static inline bool IsDynamicSectionPointer(Elf32_Word d_tag, Elf32_Word e_machin } } +} // namespace art + #endif // ART_RUNTIME_ELF_UTILS_H_ |