/usr/include/boost/preprocessor/facilities
NameSizeModeActions
detail/-0755rm
apply.hpp14750644editdlrm
check_empty.hpp10310644editdlrm
empty.hpp5670644editdlrm
expand.hpp8420644editdlrm
identity.hpp7590644editdlrm
intercept.hpp89130644editdlrm
is_1.hpp9460644editdlrm
is_empty.hpp25440644editdlrm
is_empty_or_1.hpp12050644editdlrm
is_empty_variadic.hpp25640644editdlrm
overload.hpp11500644editdlrm
va_opt.hpp16120644editdlrm
Edit: /usr/include/boost/preprocessor/facilities/expand.hpp (842B)
# /* Copyright (C) 2001 # * Housemarque Oy # * http://www.housemarque.com # * # * 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) # */ # # /* Revised by Paul Mensonides (2002) */ # # /* See http://www.boost.org for most recent version. */ # # ifndef BOOST_PREPROCESSOR_FACILITIES_EXPAND_HPP # define BOOST_PREPROCESSOR_FACILITIES_EXPAND_HPP # # include # # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC() && ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_DMC() # define BOOST_PP_EXPAND(x) BOOST_PP_EXPAND_I(x) # else # define BOOST_PP_EXPAND(x) BOOST_PP_EXPAND_OO((x)) # define BOOST_PP_EXPAND_OO(par) BOOST_PP_EXPAND_I ## par # endif # # define BOOST_PP_EXPAND_I(x) x # # endif