We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d417d commit a3c2175Copy full SHA for a3c2175
ext/json/parser/parser.h
@@ -15,17 +15,17 @@ typedef struct JSON_ParserStruct {
15
long len;
16
char *memo;
17
VALUE create_id;
18
- int max_nesting;
19
- int allow_nan;
20
- int parsing_name;
21
- int symbolize_names;
22
- int freeze;
23
VALUE object_class;
24
VALUE array_class;
25
VALUE decimal_class;
26
- int create_additions;
27
VALUE match_string;
28
FBuffer *fbuffer;
+ int max_nesting;
+ char allow_nan;
+ char parsing_name;
+ char symbolize_names;
+ char freeze;
+ char create_additions;
29
} JSON_Parser;
30
31
#define GET_PARSER \
0 commit comments