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 3d28793 commit 3778272Copy full SHA for 3778272
ext/msgpack/unpacker.h
@@ -50,25 +50,26 @@ struct msgpack_unpacker_stack_t {
50
struct msgpack_unpacker_t {
51
msgpack_buffer_t buffer;
52
msgpack_unpacker_stack_t stack;
53
- unsigned int head_byte;
54
55
VALUE self;
56
VALUE last_object;
57
58
VALUE reading_raw;
59
size_t reading_raw_remaining;
60
- int reading_raw_type;
61
62
VALUE buffer_ref;
63
64
msgpack_unpacker_ext_registry_t *ext_registry;
65
+ int reading_raw_type;
+ unsigned int head_byte;
66
+
67
/* options */
68
+ int symbol_ext_type;
69
bool symbolize_keys;
70
bool freeze;
71
bool allow_unknown_ext;
72
bool optimized_symbol_ext_type;
- int symbol_ext_type;
73
};
74
75
#define UNPACKER_BUFFER_(uk) (&(uk)->buffer)
0 commit comments