mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-29 19:57:14 +02:00
limited variadic support
[SVN r72763]
This commit is contained in:
21
test/selection.c
Normal file
21
test/selection.c
Normal file
@ -0,0 +1,21 @@
|
||||
# /* **************************************************************************
|
||||
# * *
|
||||
# * (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. */
|
||||
#
|
||||
# include <boost/preprocessor/selection.hpp>
|
||||
# include <libs/preprocessor/test/test.h>
|
||||
|
||||
BEGIN BOOST_PP_MAX(2, 2) == 2 END
|
||||
BEGIN BOOST_PP_MAX(2, 1) == 2 END
|
||||
BEGIN BOOST_PP_MAX(1, 2) == 2 END
|
||||
|
||||
BEGIN BOOST_PP_MIN(2, 2) == 2 END
|
||||
BEGIN BOOST_PP_MIN(2, 1) == 1 END
|
||||
BEGIN BOOST_PP_MIN(1, 2) == 1 END
|
Reference in New Issue
Block a user