Skip to content

Commit b3bcc6b

Browse files
authored
Merge pull request #373 from msgpack/reoder-packer
Reorder msgpack_packer struct
2 parents 938d75e + b9fd86f commit b3bcc6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ext/msgpack/packer.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ typedef struct msgpack_packer_t msgpack_packer_t;
3131
struct msgpack_packer_t {
3232
msgpack_buffer_t buffer;
3333

34-
bool compatibility_mode;
35-
bool has_bigint_ext_type;
36-
bool has_symbol_ext_type;
37-
3834
ID to_msgpack_method;
3935
VALUE to_msgpack_arg;
4036

4137
VALUE buffer_ref;
4238

39+
bool compatibility_mode;
40+
bool has_bigint_ext_type;
41+
bool has_symbol_ext_type;
42+
4343
/* options */
4444
bool comaptibility_mode;
4545
msgpack_packer_ext_registry_t ext_registry;

0 commit comments

Comments
 (0)