#ifndef BOOST_PREPROCESSOR_EXPR_IF_HPP #define BOOST_PREPROCESSOR_EXPR_IF_HPP /* Copyright (C) 2002 * Housemarque Oy * http://www.housemarque.com * * Permission to copy, use, modify, sell and distribute this software is * granted provided this copyright notice appears in all copies. This * software is provided "as is" without express or implied warranty, and * with no claim as to its suitability for any purpose. * * See http://www.boost.org for most recent version. */ #include #include /**

Expands to EXPR if COND != 0 and to nothing if COND == 0.

COND must expand to an integer literal in the range [0, BOOST_PP_LIMIT_MAG].

For example, BOOST_PP_EXPR_IF(1,^) expands to ^.

See

*/ #define BOOST_PP_EXPR_IF(COND,EXPR) BOOST_PP_DETAIL_CAT2(BOOST_PP_EXPR_IF,BOOST_PP_BOOL(COND))(EXPR) #define BOOST_PP_EXPR_IF0(E) #define BOOST_PP_EXPR_IF1(E) E #endif