Remove duplicate printing of a macro in this test.

This commit is contained in:
Edward Diener
2019-09-28 11:25:09 -04:00
parent 54669af127
commit b7b1425c7f

View File

@ -1,6 +1,6 @@
# /* ************************************************************************** # /* **************************************************************************
# * * # * *
# * (C) Copyright Edward Diener 2014. # * (C) Copyright Edward Diener 2014,2019.
# * Distributed under the Boost Software License, Version 1.0. (See # * Distributed under the Boost Software License, Version 1.0. (See
# * accompanying file LICENSE_1_0.txt or copy at # * accompanying file LICENSE_1_0.txt or copy at
# * http://www.boost.org/LICENSE_1_0.txt) # * http://www.boost.org/LICENSE_1_0.txt)
@ -94,7 +94,6 @@ void print_macros()
PRINT_MACRO(BOOST_PP_CONFIG_FLAGS()); PRINT_MACRO(BOOST_PP_CONFIG_FLAGS());
PRINT_MACRO(BOOST_PP_VARIADICS); PRINT_MACRO(BOOST_PP_VARIADICS);
PRINT_MACRO(BOOST_PP_VARIADICS_MSVC); PRINT_MACRO(BOOST_PP_VARIADICS_MSVC);
PRINT_MACRO(BOOST_PP_VARIADICS_MSVC);
PRINT_MACRO(BOOST_PP_VARIADIC_OPT()); PRINT_MACRO(BOOST_PP_VARIADIC_OPT());
} }