Merge pull request #1061 from nemerle/RData-type-constification

Changed the RData type field to 'const'
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-03-24 17:51:48 -07:00
+1 -1
View File
@@ -19,7 +19,7 @@ typedef struct mrb_data_type {
struct RData {
MRB_OBJECT_HEADER;
struct iv_tbl *iv;
mrb_data_type *type;
const mrb_data_type *type;
void *data;
};