diff options
Diffstat (limited to 'src/object.h')
| -rw-r--r-- | src/object.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/object.h b/src/object.h index 7da6a5d147..51b9213c02 100644 --- a/src/object.h +++ b/src/object.h @@ -1989,8 +1989,7 @@ class MANAGED Class : public StaticStorageBase { // access flags; low 16 bits are defined by VM spec uint32_t access_flags_; - // Total size of the Class instance; used when allocating storage on gc heap. - // See also object_size_. + // Total class size; used when allocating storage on gc heap. size_t class_size_; // tid used to check for recursive <clinit> invocation @@ -2004,7 +2003,6 @@ class MANAGED Class : public StaticStorageBase { // Total object size; used when allocating storage on gc heap. // (For interfaces and abstract classes this will be zero.) - // See also class_size_. size_t object_size_; // primitive type index, or kPrimNot (0); set for generated prim classes @@ -2275,6 +2273,7 @@ class MANAGED FieldClass : public Class { class MANAGED MethodClass : public Class { private: + ObjectArray<Object>* NO_ANNOTATIONS_; Object* ORDER_BY_SIGNATURE_; friend struct MethodClassOffsets; // for verifying offset information DISALLOW_IMPLICIT_CONSTRUCTORS(MethodClass); |