diff options
Diffstat (limited to 'runtime/interpreter/unstarted_runtime.cc')
-rw-r--r-- | runtime/interpreter/unstarted_runtime.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/interpreter/unstarted_runtime.cc b/runtime/interpreter/unstarted_runtime.cc index a5b1038d5a..7dd3d3db4d 100644 --- a/runtime/interpreter/unstarted_runtime.cc +++ b/runtime/interpreter/unstarted_runtime.cc @@ -25,6 +25,7 @@ #include <locale> #include <unordered_map> +#include "android-base/stringprintf.h" #include "ScopedLocalRef.h" #include "art_method-inl.h" @@ -56,6 +57,9 @@ namespace art { namespace interpreter { +using android::base::StringAppendV; +using android::base::StringPrintf; + static void AbortTransactionOrFail(Thread* self, const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) REQUIRES_SHARED(Locks::mutator_lock_); |