mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-30 09:00:48 +08:00
change msgpack to 3.1.0 to remove boost dependency
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
# /* **************************************************************************
|
||||
# * *
|
||||
# * (C) Copyright Edward Diener 2014. *
|
||||
# * Distributed under the Boost Software License, Version 1.0. (See *
|
||||
# * accompanying file LICENSE_1_0.txt or copy at *
|
||||
# * http://www.boost.org/LICENSE_1_0.txt) *
|
||||
# * *
|
||||
# ************************************************************************** */
|
||||
#
|
||||
# /* See http://www.boost.org for most recent version. */
|
||||
#
|
||||
# ifndef MSGPACK_PREPROCESSOR_ARRAY_DETAIL_GET_DATA_HPP
|
||||
# define MSGPACK_PREPROCESSOR_ARRAY_DETAIL_GET_DATA_HPP
|
||||
#
|
||||
# include <msgpack/preprocessor/config/config.hpp>
|
||||
# include <msgpack/preprocessor/tuple/rem.hpp>
|
||||
# include <msgpack/preprocessor/control/if.hpp>
|
||||
# include <msgpack/preprocessor/control/iif.hpp>
|
||||
# include <msgpack/preprocessor/facilities/is_1.hpp>
|
||||
#
|
||||
# /* MSGPACK_PP_ARRAY_DETAIL_GET_DATA */
|
||||
#
|
||||
# define MSGPACK_PP_ARRAY_DETAIL_GET_DATA_NONE(size, data)
|
||||
|
||||
# if MSGPACK_PP_VARIADICS && !(MSGPACK_PP_VARIADICS_MSVC && _MSC_VER <= 1400)
|
||||
# if MSGPACK_PP_VARIADICS_MSVC
|
||||
# define MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY_VC_DEFAULT(size, data) MSGPACK_PP_TUPLE_REM(size) data
|
||||
# define MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY_VC_CAT(size, data) MSGPACK_PP_TUPLE_REM_CAT(size) data
|
||||
# define MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY(size, data) \
|
||||
MSGPACK_PP_IIF \
|
||||
( \
|
||||
MSGPACK_PP_IS_1(size), \
|
||||
MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY_VC_CAT, \
|
||||
MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY_VC_DEFAULT \
|
||||
) \
|
||||
(size,data) \
|
||||
/**/
|
||||
# else
|
||||
# define MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY(size, data) MSGPACK_PP_TUPLE_REM(size) data
|
||||
# endif
|
||||
# else
|
||||
# define MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY(size, data) MSGPACK_PP_TUPLE_REM(size) data
|
||||
# endif
|
||||
|
||||
# define MSGPACK_PP_ARRAY_DETAIL_GET_DATA(size, data) \
|
||||
MSGPACK_PP_IF \
|
||||
( \
|
||||
size, \
|
||||
MSGPACK_PP_ARRAY_DETAIL_GET_DATA_ANY, \
|
||||
MSGPACK_PP_ARRAY_DETAIL_GET_DATA_NONE \
|
||||
) \
|
||||
(size,data) \
|
||||
/**/
|
||||
#
|
||||
# endif /* MSGPACK_PREPROCESSOR_ARRAY_DETAIL_GET_DATA_HPP */
|
||||
Reference in New Issue
Block a user