blob: 5cc6f22509c80d9463e8a4a032c3cd41b96a2bbd [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001# /* **************************************************************************
2# * *
3# * (C) Copyright Paul Mensonides 2002.
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#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070012# ifndef NDNBOOST_PREPROCESSOR_CONTROL_IIF_HPP
13# define NDNBOOST_PREPROCESSOR_CONTROL_IIF_HPP
Jeff Thompsonf7d49942013-08-01 16:47:40 -070014#
Jeff Thompson2277ce52013-08-01 17:34:11 -070015# include <ndnboost/preprocessor/config/config.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070016#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070017# if ~NDNBOOST_PP_CONFIG_FLAGS() & NDNBOOST_PP_CONFIG_MWCC()
18# define NDNBOOST_PP_IIF(bit, t, f) NDNBOOST_PP_IIF_I(bit, t, f)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070019# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070020# define NDNBOOST_PP_IIF(bit, t, f) NDNBOOST_PP_IIF_OO((bit, t, f))
21# define NDNBOOST_PP_IIF_OO(par) NDNBOOST_PP_IIF_I ## par
Jeff Thompsonf7d49942013-08-01 16:47:40 -070022# endif
23#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070024# if ~NDNBOOST_PP_CONFIG_FLAGS() & NDNBOOST_PP_CONFIG_MSVC()
25# define NDNBOOST_PP_IIF_I(bit, t, f) NDNBOOST_PP_IIF_ ## bit(t, f)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070026# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070027# define NDNBOOST_PP_IIF_I(bit, t, f) NDNBOOST_PP_IIF_II(NDNBOOST_PP_IIF_ ## bit(t, f))
28# define NDNBOOST_PP_IIF_II(id) id
Jeff Thompsonf7d49942013-08-01 16:47:40 -070029# endif
30#
Jeff Thompson3d613fd2013-10-15 15:39:04 -070031# define NDNBOOST_PP_IIF_0(t, f) f
32# define NDNBOOST_PP_IIF_1(t, f) t
Jeff Thompsonf7d49942013-08-01 16:47:40 -070033#
34# endif