diff options
author | git <[email protected]> | 2019-10-03 12:48:20 +0900 |
---|---|---|
committer | git <[email protected]> | 2019-10-03 12:48:20 +0900 |
commit | 7e060d50183712b7ab11f5887af6a3ce69df4a57 (patch) | |
tree | 556137008ebf5c5b0e22c827c7280a41536f55a3 /method.h | |
parent | eb92159d72fc711387f7e17ffbaca1678f23fd47 (diff) |
* expand tabs. [ci skip]
Tabs were expanded because previously the file did not have any tab indentation.
Please update your editor config, and use misc/expand_tabs.rb in the pre-commit hook.
Diffstat (limited to 'method.h')
-rw-r--r-- | method.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -88,14 +88,14 @@ METHOD_ENTRY_FLAGS_SET(rb_method_entry_t *me, rb_method_visibility_t visi, unsig VM_ASSERT(basic <= 1); me->flags = (me->flags & ~(IMEMO_FL_USER0|IMEMO_FL_USER1|IMEMO_FL_USER2)) | - ((visi << (IMEMO_FL_USHIFT+0)) | (basic << (IMEMO_FL_USHIFT+2))); + ((visi << (IMEMO_FL_USHIFT+0)) | (basic << (IMEMO_FL_USHIFT+2))); } static inline void METHOD_ENTRY_FLAGS_COPY(rb_method_entry_t *dst, const rb_method_entry_t *src) { dst->flags = (dst->flags & ~(IMEMO_FL_USER0|IMEMO_FL_USER1|IMEMO_FL_USER2)) | - (src->flags & (IMEMO_FL_USER0|IMEMO_FL_USER1|IMEMO_FL_USER2)); + (src->flags & (IMEMO_FL_USER0|IMEMO_FL_USER1|IMEMO_FL_USER2)); } typedef enum { @@ -166,11 +166,11 @@ struct rb_method_definition_struct { int complemented_count : 28; union { - rb_method_iseq_t iseq; - rb_method_cfunc_t cfunc; - rb_method_attr_t attr; - rb_method_alias_t alias; - rb_method_refined_t refined; + rb_method_iseq_t iseq; + rb_method_cfunc_t cfunc; + rb_method_attr_t attr; + rb_method_alias_t alias; + rb_method_refined_t refined; rb_method_bmethod_t bmethod; enum method_optimized_type optimize_type; |