summaryrefslogtreecommitdiff
path: root/ext/json/parser/parser.h
diff options
context:
space:
mode:
authorJean Boussier <jean.boussier@gmail.com>2020-11-18 11:59:27 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-17 19:51:51 +0900
commit2de594ca98d95e62f7fcf000f21e174ac3f6fcaf (patch)
tree8719739e48ce50c28bfe93c3ce9bf366eb2f2f87 /ext/json/parser/parser.h
parent1d2b4ccaf28596efee65c59dc69ea489a4237079 (diff)
[flori/json] Deduplicate strings inside json_string_unescape
[ci 2] https://github.com/flori/json/commit/1982070cb8
Diffstat (limited to 'ext/json/parser/parser.h')
-rw-r--r--ext/json/parser/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/parser/parser.h b/ext/json/parser/parser.h
index d2b074de86..0992bbf6e5 100644
--- a/ext/json/parser/parser.h
+++ b/ext/json/parser/parser.h
@@ -63,7 +63,7 @@ static char *JSON_parse_value(JSON_Parser *json, char *p, char *pe, VALUE *resul
static char *JSON_parse_integer(JSON_Parser *json, char *p, char *pe, VALUE *result);
static char *JSON_parse_float(JSON_Parser *json, char *p, char *pe, VALUE *result);
static char *JSON_parse_array(JSON_Parser *json, char *p, char *pe, VALUE *result, int current_nesting);
-static VALUE json_string_unescape(char *string, char *stringEnd);
+static VALUE json_string_unescape(char *string, char *stringEnd, int intern, int symbolize);
static char *JSON_parse_string(JSON_Parser *json, char *p, char *pe, VALUE *result);
static VALUE convert_encoding(VALUE source);
static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self);