diff options
Diffstat (limited to 'runtime/common_throws.cc')
| -rw-r--r-- | runtime/common_throws.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/common_throws.cc b/runtime/common_throws.cc index 9f0dbbbdd0..c30272e114 100644 --- a/runtime/common_throws.cc +++ b/runtime/common_throws.cc @@ -18,6 +18,7 @@ #include <sstream> +#include "android-base/stringprintf.h" #include "ScopedLocalRef.h" #include "art_field-inl.h" @@ -37,6 +38,9 @@ namespace art { +using android::base::StringAppendV; +using android::base::StringPrintf; + static void AddReferrerLocation(std::ostream& os, ObjPtr<mirror::Class> referrer) REQUIRES_SHARED(Locks::mutator_lock_) { if (referrer != nullptr) { |