diff options
Diffstat (limited to 'runtime/utils.h')
-rw-r--r-- | runtime/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index e6a6b1dfad..6dee5fed7e 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -33,10 +33,10 @@ namespace art { +class ArtField; class DexFile; namespace mirror { -class ArtField; class ArtMethod; class Class; class Object; @@ -343,7 +343,7 @@ std::string PrettyDescriptor(Primitive::Type type); // Returns a human-readable signature for 'f'. Something like "a.b.C.f" or // "int a.b.C.f" (depending on the value of 'with_type'). -std::string PrettyField(mirror::ArtField* f, bool with_type = true) +std::string PrettyField(ArtField* f, bool with_type = true) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); std::string PrettyField(uint32_t field_idx, const DexFile& dex_file, bool with_type = true); |