diff options
Diffstat (limited to 'runtime/mirror/class.cc')
-rw-r--r-- | runtime/mirror/class.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/class.cc b/runtime/mirror/class.cc index 43dbc43115..9ca373e0cf 100644 --- a/runtime/mirror/class.cc +++ b/runtime/mirror/class.cc @@ -1879,7 +1879,7 @@ bool Class::ProxyDescriptorEquals(ObjPtr<mirror::Class> match) { return descriptor == match_descriptor; } -bool Class::ProxyDescriptorEquals(const char* match) { +bool Class::ProxyDescriptorEquals(std::string_view match) { DCHECK(IsProxyClass()); std::string storage; const char* descriptor = GetDescriptor(&storage); |