diff options
author | Brian Carlstrom <bdc@google.com> | 2014-10-16 22:02:23 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2014-10-16 22:13:04 -0700 |
commit | b144fce20290535fd362df8e79106c9c35ae9efb (patch) | |
tree | 56cd22716e1d682ec5fb385025bf97133153d1f7 /runtime/mirror | |
parent | fb0566b28a0453bc5605db8abd521c22038c6a7f (diff) | |
download | art-b144fce20290535fd362df8e79106c9c35ae9efb.zip art-b144fce20290535fd362df8e79106c9c35ae9efb.tar.gz art-b144fce20290535fd362df8e79106c9c35ae9efb.tar.bz2 |
Tracking change to make Class.getDeclaredFields/Methods public
(cherry picked from commit d8bef73723ea2d101b36e857968bc15d0887dcee)
Bug: 17375269
Change-Id: I8a810b4f21eb5a94883415cf7ecc4df273d72688
Diffstat (limited to 'runtime/mirror')
-rw-r--r-- | runtime/mirror/class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/mirror/class.h b/runtime/mirror/class.h index 2d49121..4383993 100644 --- a/runtime/mirror/class.h +++ b/runtime/mirror/class.h @@ -507,7 +507,7 @@ class MANAGED Class FINAL : public Object { // The size of java.lang.Class.class. static uint32_t ClassClassSize() { // The number of vtable entries in java.lang.Class. - uint32_t vtable_entries = Object::kVTableLength + 64; + uint32_t vtable_entries = Object::kVTableLength + 66; return ComputeClassSize(true, vtable_entries, 0, 0, 0, 1, 0); } |