Go to the documentation of this file.
14 # ifndef MSGPACK_PREPROCESSOR_COMPARISON_EQUAL_HPP
15 # define MSGPACK_PREPROCESSOR_COMPARISON_EQUAL_HPP
23 # if ~MSGPACK_PP_CONFIG_FLAGS() & MSGPACK_PP_CONFIG_EDG()
24 # define MSGPACK_PP_EQUAL(x, y) MSGPACK_PP_COMPL(MSGPACK_PP_NOT_EQUAL(x, y))
26 # define MSGPACK_PP_EQUAL(x, y) MSGPACK_PP_EQUAL_I(x, y)
27 # define MSGPACK_PP_EQUAL_I(x, y) MSGPACK_PP_COMPL(MSGPACK_PP_NOT_EQUAL(x, y))
32 # define MSGPACK_PP_EQUAL_D(d, x, y) MSGPACK_PP_EQUAL(x, y)