diff options
Diffstat (limited to 'runtime/oat_file.cc')
| -rw-r--r-- | runtime/oat_file.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/oat_file.cc b/runtime/oat_file.cc index bdf8b0e65d..0bf713679b 100644 --- a/runtime/oat_file.cc +++ b/runtime/oat_file.cc @@ -32,6 +32,8 @@ #include "android/dlext.h" #endif +#include "android-base/stringprintf.h" + #include "art_method-inl.h" #include "base/bit_vector.h" #include "base/enums.h" @@ -58,6 +60,8 @@ namespace art { +using android::base::StringPrintf; + // Whether OatFile::Open will try dlopen. Fallback is our own ELF loader. static constexpr bool kUseDlopen = true; |