summaryrefslogtreecommitdiff
path: root/ext/json/parser/parser.rl
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-28 17:03:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-28 17:03:36 +0000
commit5547719573c6b37566480eaadf0c17bd0c5529bd (patch)
tree10ed6697d04576a68cbe11d6d71b4ebcb08616e3 /ext/json/parser/parser.rl
parentd9f384d4304228bb4301c68d45cb9d89986f060f (diff)
ext/json: for ancient backward compatibilities
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/json/parser/parser.rl')
-rw-r--r--ext/json/parser/parser.rl6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/json/parser/parser.rl b/ext/json/parser/parser.rl
index 0b6fb041c5..e69fe57781 100644
--- a/ext/json/parser/parser.rl
+++ b/ext/json/parser/parser.rl
@@ -845,6 +845,7 @@ static size_t JSON_memsize(const void *ptr)
return sizeof(*json) + FBUFFER_CAPA(json->fbuffer);
}
+#ifdef HAVE_TYPE_RB_DATA_TYPE_T
static const rb_data_type_t JSON_Parser_type = {
"JSON/Parser",
{JSON_mark, JSON_free, JSON_memsize,},
@@ -853,11 +854,16 @@ static const rb_data_type_t JSON_Parser_type = {
RUBY_TYPED_FREE_IMMEDIATELY,
#endif
};
+#endif
static VALUE cJSON_parser_s_allocate(VALUE klass)
{
JSON_Parser *json = JSON_allocate();
+#ifdef HAVE_TYPE_RB_DATA_TYPE_T
return TypedData_Wrap_Struct(klass, &JSON_Parser_type, json);
+#else
+ return Data_Wrap_Struct(klass, JSON_mark, JSON_free, json);
+#endif
}
/*