summaryrefslogtreecommitdiffstats
path: root/runtime/mirror/class.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-10-16 22:02:23 -0700
committerBrian Carlstrom <bdc@google.com>2014-10-16 22:13:04 -0700
commitb144fce20290535fd362df8e79106c9c35ae9efb (patch)
tree56cd22716e1d682ec5fb385025bf97133153d1f7 /runtime/mirror/class.h
parentfb0566b28a0453bc5605db8abd521c22038c6a7f (diff)
downloadart-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/class.h')
-rw-r--r--runtime/mirror/class.h2
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);
}