diff options
author | 2019-03-27 16:41:41 +0000 | |
---|---|---|
committer | 2019-03-28 09:22:07 +0000 | |
commit | 0984e483c1b8033250a32b11f112ae3e65eef39b (patch) | |
tree | 267b4f59818e5080dff726adf25e5b5710111377 /runtime/mirror/field.cc | |
parent | 621c8807f38fedab56ea701370a18df123177f67 (diff) |
Style cleanup for ObjPtr<>-ify changes.
Replace "ObjPtr<.> const" with "const ObjPtr<.>".
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 31113334
Change-Id: I5a1c080bc88b091e15ee9eb0bb1ef6f6f290701c
Diffstat (limited to 'runtime/mirror/field.cc')
-rw-r--r-- | runtime/mirror/field.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/field.cc b/runtime/mirror/field.cc index e885d41b86..f4d1e730a3 100644 --- a/runtime/mirror/field.cc +++ b/runtime/mirror/field.cc @@ -37,7 +37,7 @@ ArtField* Field::GetArtField() { return &declaring_class->GetSFieldsPtr()->At(1); } } - ObjPtr<mirror::DexCache> const dex_cache = declaring_class->GetDexCache(); + const ObjPtr<mirror::DexCache> dex_cache = declaring_class->GetDexCache(); ArtField* art_field = dex_cache->GetResolvedField(GetDexFieldIndex(), kRuntimePointerSize); if (UNLIKELY(art_field == nullptr)) { if (IsStatic()) { |