MessagePack for C++
push_front.hpp
Go to the documentation of this file.
1 # /* **************************************************************************
2 # * *
3 # * (C) Copyright Edward Diener 2013.
4 # * Distributed under the Boost Software License, Version 1.0. (See
5 # * accompanying file LICENSE_1_0.txt or copy at
6 # * http://www.boost.org/LICENSE_1_0.txt)
7 # * *
8 # ************************************************************************** */
9 #
10 # /* See http://www.boost.org for most recent version. */
11 #
12 # ifndef MSGPACK_PREPROCESSOR_TUPLE_PUSH_FRONT_HPP
13 # define MSGPACK_PREPROCESSOR_TUPLE_PUSH_FRONT_HPP
14 #
16 #
17 # if MSGPACK_PP_VARIADICS
18 #
22 #
23 #
24 # /* MSGPACK_PP_TUPLE_PUSH_FRONT */
25 #
26 # define MSGPACK_PP_TUPLE_PUSH_FRONT(tuple, elem) \
27  MSGPACK_PP_ARRAY_TO_TUPLE(MSGPACK_PP_ARRAY_PUSH_FRONT(MSGPACK_PP_TUPLE_TO_ARRAY(tuple), elem)) \
28 
29 #
30 # endif // MSGPACK_PP_VARIADICS
31 #
32 # endif // MSGPACK_PREPROCESSOR_TUPLE_PUSH_FRONT_HPP