diff --git a/doc/_themes/sphinx_rtd_theme b/doc/_themes/sphinx_rtd_theme index 4ecbeb5..928fe94 120000 Binary files a/doc/_themes/sphinx_rtd_theme and b/doc/_themes/sphinx_rtd_theme differ diff --git a/src/msgpackcommon.h b/src/msgpackcommon.h index 68a6479..f8109c6 100644 --- a/src/msgpackcommon.h +++ b/src/msgpackcommon.h @@ -4,6 +4,10 @@ #include #include +#ifdef Q_OS_WINRT +#include +#endif + #define MSGPACK_MAJOR 0 #define MSGPACK_MINOR 1 #define MSGPACK_VERSION 0 diff --git a/src/private/unpack_p.cpp b/src/private/unpack_p.cpp index 092f9b3..9a01d78 100644 --- a/src/private/unpack_p.cpp +++ b/src/private/unpack_p.cpp @@ -8,18 +8,38 @@ #include MsgPackPrivate::type_parser_f MsgPackPrivate::unpackers[32] = { - unpack_nil, - unpack_never_used, - unpack_false, unpack_true, - unpack_bin8, unpack_bin16, unpack_bin32, - unpack_ext8, unpack_ext16, unpack_ext32, - unpack_float32, unpack_float64, - unpack_uint8, unpack_uint16, unpack_uint32, unpack_uint64, - unpack_int8, unpack_int16, unpack_int32, unpack_int64, - unpack_fixext1, unpack_fixext2, unpack_fixext4, unpack_fixext8, unpack_fixext16, - unpack_str8, unpack_str16, unpack_str32, - unpack_array16, unpack_array32, - unpack_map16, unpack_map32 + MsgPackPrivate::unpack_nil, + MsgPackPrivate::unpack_never_used, + MsgPackPrivate::unpack_false, + MsgPackPrivate::unpack_true, + MsgPackPrivate::unpack_bin8, + MsgPackPrivate::unpack_bin16, + MsgPackPrivate::unpack_bin32, + MsgPackPrivate::unpack_ext8, + MsgPackPrivate::unpack_ext16, + MsgPackPrivate::unpack_ext32, + MsgPackPrivate::unpack_float32, + MsgPackPrivate::unpack_float64, + MsgPackPrivate::unpack_uint8, + MsgPackPrivate::unpack_uint16, + MsgPackPrivate::unpack_uint32, + MsgPackPrivate::unpack_uint64, + MsgPackPrivate::unpack_int8, + MsgPackPrivate::unpack_int16, + MsgPackPrivate::unpack_int32, + MsgPackPrivate::unpack_int64, + MsgPackPrivate::unpack_fixext1, + MsgPackPrivate::unpack_fixext2, + MsgPackPrivate::unpack_fixext4, + MsgPackPrivate::unpack_fixext8, + MsgPackPrivate::unpack_fixext16, + MsgPackPrivate::unpack_str8, + MsgPackPrivate::unpack_str16, + MsgPackPrivate::unpack_str32, + MsgPackPrivate::unpack_array16, + MsgPackPrivate::unpack_array32, + MsgPackPrivate::unpack_map16, + MsgPackPrivate::unpack_map32 }; QHash MsgPackPrivate::user_unpackers;