Rename MRB_METHOD_T_STRUCT to MRB_USE_METHOD_T_STRUCT.

It's the first change of renaming configuration options to `MRB_XXX` to
`MRB_USE_XXX` or `MRB_NO_XXX`.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-08-14 07:52:20 +09:00
parent dea185e687
commit 72d071540c
4 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -199,7 +199,7 @@ struct mrb_context {
*/
typedef mrb_value (*mrb_func_t)(struct mrb_state *mrb, mrb_value self);
#ifndef MRB_METHOD_T_STRUCT
#ifndef MRB_USE_METHOD_T_STRUCT
typedef uintptr_t mrb_method_t;
#else
typedef struct {