diff options
| -rw-r--r-- | runtime/mirror/dex_cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/mirror/dex_cache.h b/runtime/mirror/dex_cache.h index c1d71e1501..c1d8cd8335 100644 --- a/runtime/mirror/dex_cache.h +++ b/runtime/mirror/dex_cache.h @@ -505,7 +505,7 @@ class MANAGED DexCache final : public Object { kDexCacheFieldCacheSize, LinearAllocKind::kNoGCRoots, NativeArray<ArtField>, - ArtField, + ArtField*, NumFieldIds, LinearAllocKind::kNoGCRoots) @@ -527,7 +527,7 @@ class MANAGED DexCache final : public Object { kDexCacheMethodCacheSize, LinearAllocKind::kNoGCRoots, NativeArray<ArtMethod>, - ArtMethod, + ArtMethod*, NumMethodIds, LinearAllocKind::kNoGCRoots) |