diff --git a/libunwindstack/DexFile.cpp b/libunwindstack/DexFile.cpp index 9b0b2328f..eaf867fd0 100644 --- a/libunwindstack/DexFile.cpp +++ b/libunwindstack/DexFile.cpp @@ -23,7 +23,7 @@ #include #include -#include +#include #include #include @@ -46,7 +46,7 @@ std::unique_ptr DexFile::Create(uint64_t dex_file_offset_in_memory, Mem bool DexFile::GetMethodInformation(uint64_t dex_offset, std::string* method_name, uint64_t* method_offset) { - art_api::dex::MethodInfo method_info = GetMethodInfoForOffset(dex_offset); + art_api::dex::MethodInfo method_info = GetMethodInfoForOffset(dex_offset, false); if (method_info.offset == 0) { return false; } diff --git a/libunwindstack/DexFile.h b/libunwindstack/DexFile.h index 5797deec6..ca658e688 100644 --- a/libunwindstack/DexFile.h +++ b/libunwindstack/DexFile.h @@ -25,7 +25,7 @@ #include #include -#include +#include namespace unwindstack {