diff options
Diffstat (limited to 'oatdump')
| -rw-r--r-- | oatdump/oatdump.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oatdump/oatdump.cc b/oatdump/oatdump.cc index 7bde4710a0..322d3aa8f1 100644 --- a/oatdump/oatdump.cc +++ b/oatdump/oatdump.cc @@ -1597,7 +1597,7 @@ class ImageDumper { os << StringPrintf("null %s\n", PrettyDescriptor(field->GetTypeDescriptor()).c_str()); } else { // Grab the field type without causing resolution. - mirror::Class* field_type = field->GetType(false); + mirror::Class* field_type = field->GetType<false>(); if (field_type != nullptr) { PrettyObjectValue(os, field_type, value); } else { |
