diff options
Diffstat (limited to 'runtime/art_method-inl.h')
-rw-r--r-- | runtime/art_method-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/art_method-inl.h b/runtime/art_method-inl.h index 1aa6a00495..499b7fe8fb 100644 --- a/runtime/art_method-inl.h +++ b/runtime/art_method-inl.h @@ -55,7 +55,7 @@ inline mirror::Class* ArtMethod::GetDeclaringClass() { if (!IsRuntimeMethod()) { CHECK(result != nullptr) << this; CHECK(result->IsIdxLoaded() || result->IsErroneous()) - << result->GetStatus() << " " << PrettyClass(result); + << result->GetStatus() << " " << result->PrettyClass(); } else { CHECK(result == nullptr) << this; } |