summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-05-18 11:10:20 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-05-18 11:10:20 +0900
commite41f15747eea34ea45e0258f0755145fcd10293b (patch)
tree2f2a005f5423bbdb07bbf965c4aa02c055f2a1d4 /include
parentace0d3949b62b3541a5ab210706f939890890cc0 (diff)
downloadmruby-e41f15747eea34ea45e0258f0755145fcd10293b.tar.gz
mruby-e41f15747eea34ea45e0258f0755145fcd10293b.zip
Rename `struct RIstruct` to `struct RIStruct`.
Diffstat (limited to 'include')
-rw-r--r--include/mruby/istruct.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mruby/istruct.h b/include/mruby/istruct.h
index 4d2393ccd..23c9bfa36 100644
--- a/include/mruby/istruct.h
+++ b/include/mruby/istruct.h
@@ -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()