Go to the documentation of this file.
14 # ifndef MSGPACK_PREPROCESSOR_PUNCTUATION_COMMA_IF_HPP
15 # define MSGPACK_PREPROCESSOR_PUNCTUATION_COMMA_IF_HPP
24 # if ~MSGPACK_PP_CONFIG_FLAGS() & MSGPACK_PP_CONFIG_EDG()
25 # define MSGPACK_PP_COMMA_IF(cond) MSGPACK_PP_IF(cond, MSGPACK_PP_COMMA, MSGPACK_PP_EMPTY)()
27 # define MSGPACK_PP_COMMA_IF(cond) MSGPACK_PP_COMMA_IF_I(cond)
28 # define MSGPACK_PP_COMMA_IF_I(cond) MSGPACK_PP_IF(cond, MSGPACK_PP_COMMA, MSGPACK_PP_EMPTY)()