Rename struct RIstruct to struct RIStruct.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-05-18 11:10:20 +09:00
parent ace0d3949b
commit e41f15747e
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -19,12 +19,12 @@ MRB_BEGIN_DECL
#define ISTRUCT_DATA_SIZE (sizeof(void*) * 3)
struct RIstruct {
struct RIStruct {
MRB_OBJECT_HEADER;
char inline_data[ISTRUCT_DATA_SIZE];
};
#define RISTRUCT(obj) ((struct RIstruct*)(mrb_ptr(obj)))
#define RISTRUCT(obj) ((struct RIStruct*)(mrb_ptr(obj)))
#define ISTRUCT_PTR(obj) (RISTRUCT(obj)->inline_data)
MRB_INLINE mrb_int mrb_istruct_size()