Sha256: 5e42e3c3d95ef60d53a2de17e98e41de293e92155e7c79ac9cb1af3c1196e850
Contents?: true
Size: 1.56 KB
Versions: 44
Compression:
Stored size: 1.56 KB
Contents
# /* ************************************************************************** # * * # * (C) Copyright Paul Mensonides 2002. # * 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) # * * # ************************************************************************** */ # # ifndef MSGPACK_PREPROCESSOR_DETAIL_SPLIT_HPP # define MSGPACK_PREPROCESSOR_DETAIL_SPLIT_HPP # # include <msgpack/preprocessor/config/config.hpp> # # /* MSGPACK_PP_SPLIT */ # # if MSGPACK_PP_CONFIG_FLAGS() & MSGPACK_PP_CONFIG_MWCC() # define MSGPACK_PP_SPLIT(n, im) MSGPACK_PP_SPLIT_I((n, im)) # define MSGPACK_PP_SPLIT_I(par) MSGPACK_PP_SPLIT_II ## par # define MSGPACK_PP_SPLIT_II(n, a, b) MSGPACK_PP_SPLIT_ ## n(a, b) # elif MSGPACK_PP_CONFIG_FLAGS() & MSGPACK_PP_CONFIG_MSVC() # define MSGPACK_PP_SPLIT(n, im) MSGPACK_PP_SPLIT_I(n((im))) # define MSGPACK_PP_SPLIT_I(n) MSGPACK_PP_SPLIT_ID(MSGPACK_PP_SPLIT_II_ ## n) # define MSGPACK_PP_SPLIT_II_0(s) MSGPACK_PP_SPLIT_ID(MSGPACK_PP_SPLIT_0 s) # define MSGPACK_PP_SPLIT_II_1(s) MSGPACK_PP_SPLIT_ID(MSGPACK_PP_SPLIT_1 s) # define MSGPACK_PP_SPLIT_ID(id) id # else # define MSGPACK_PP_SPLIT(n, im) MSGPACK_PP_SPLIT_I(n)(im) # define MSGPACK_PP_SPLIT_I(n) MSGPACK_PP_SPLIT_ ## n # endif # # define MSGPACK_PP_SPLIT_0(a, b) a # define MSGPACK_PP_SPLIT_1(a, b) b # # endif
Version data entries
44 entries across 44 versions & 2 rubygems