summaryrefslogtreecommitdiff
path: root/method.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-28 10:35:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-28 10:35:28 +0000
commite47da4ddf3d39be0d6d9470dddac265222767cbb (patch)
tree4dc3ad2b21dbe6709cd088d5ec964c6a1aea1320 /method.h
parent46bfa65fccf58cee280bf552193f93388b00d16d (diff)
method.h: BITFIELD in rb_method_definition_t
* method.h (rb_method_definition_struct): use BITFIELD for rb_method_type_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'method.h')
-rw-r--r--method.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/method.h b/method.h
index e2d121d9b8..0cb1b4135a 100644
--- a/method.h
+++ b/method.h
@@ -153,7 +153,7 @@ enum method_optimized_type {
};
PACKED_STRUCT_UNALIGNED(struct rb_method_definition_struct {
- unsigned int type : 4; /* method type */
+ BITFIELD(rb_method_type_t) type : 4;
int alias_count : 28;
int complemented_count : 28;