Sha256: e147998aaf6abfca59f82f31f70a4110a4a911b0c75aee74ad3adc5c929d5486
Contents?: true
Size: 1.1 KB
Versions: 44
Compression:
Stored size: 1.1 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) # * * # ************************************************************************** */ # # /* See http://www.boost.org for most recent version. */ # # ifndef MSGPACK_PREPROCESSOR_SEQ_TO_TUPLE_HPP # define MSGPACK_PREPROCESSOR_SEQ_TO_TUPLE_HPP # # include <msgpack/preprocessor/config/config.hpp> # include <msgpack/preprocessor/seq/enum.hpp> # # /* MSGPACK_PP_SEQ_TO_TUPLE */ # # if ~MSGPACK_PP_CONFIG_FLAGS() & MSGPACK_PP_CONFIG_EDG() # define MSGPACK_PP_SEQ_TO_TUPLE(seq) (MSGPACK_PP_SEQ_ENUM(seq)) # else # define MSGPACK_PP_SEQ_TO_TUPLE(seq) MSGPACK_PP_SEQ_TO_TUPLE_I(seq) # define MSGPACK_PP_SEQ_TO_TUPLE_I(seq) (MSGPACK_PP_SEQ_ENUM(seq)) # endif # # endif
Version data entries
44 entries across 44 versions & 2 rubygems