diff options
Diffstat (limited to 'compiler/elf_writer_debug.h')
-rw-r--r-- | compiler/elf_writer_debug.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/elf_writer_debug.h b/compiler/elf_writer_debug.h index e58fd0a390..9ed102f91b 100644 --- a/compiler/elf_writer_debug.h +++ b/compiler/elf_writer_debug.h @@ -17,23 +17,22 @@ #ifndef ART_COMPILER_ELF_WRITER_DEBUG_H_ #define ART_COMPILER_ELF_WRITER_DEBUG_H_ -#include <vector> - #include "elf_builder.h" #include "dwarf/dwarf_constants.h" #include "oat_writer.h" +#include "utils/array_ref.h" namespace art { namespace dwarf { template<typename ElfTypes> void WriteCFISection(ElfBuilder<ElfTypes>* builder, - const std::vector<OatWriter::DebugInfo>& method_infos, + const ArrayRef<const MethodDebugInfo>& method_infos, CFIFormat format); template<typename ElfTypes> void WriteDebugSections(ElfBuilder<ElfTypes>* builder, - const std::vector<OatWriter::DebugInfo>& method_infos); + const ArrayRef<const MethodDebugInfo>& method_infos); } // namespace dwarf } // namespace art |