summaryrefslogtreecommitdiff
path: root/runtime/mirror/class.h
diff options
context:
space:
mode:
author Igor Murashkin <iam@google.com> 2016-02-03 20:13:59 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-02-03 20:13:59 +0000
commit071b933eb6e937ca6b9efa24e0e3a70a50eca975 (patch)
tree276d412a8c23d8292dfa6108f639e4534a910c28 /runtime/mirror/class.h
parentc5b76b9328d77b83c80afed14a5b6e7009136e15 (diff)
parentdf187e4cc8b1b2dc6cb0043eb91d1dfd72cb490b (diff)
Merge changes from topic 'reflection_1_8'
* changes: Revert "Revert "reflection: Add new 1.8 AnnotatedElement methods and tests"" interpreter: Fix proxy method invocation with access checks enabled.
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 8fa4975532..1dae1946a8 100644
--- a/runtime/mirror/class.h
+++ b/runtime/mirror/class.h
@@ -562,7 +562,7 @@ class MANAGED Class FINAL : public Object {
// The size of java.lang.Class.class.
static uint32_t ClassClassSize(size_t pointer_size) {
// The number of vtable entries in java.lang.Class.
- uint32_t vtable_entries = Object::kVTableLength + 69;
+ uint32_t vtable_entries = Object::kVTableLength + 72;
return ComputeClassSize(true, vtable_entries, 0, 0, 4, 1, 0, pointer_size);
}