#include <boost/preprocessor/punctuation/remove_parens.hpp>
#define DATA data
#define DATAP ( data ) more_data
BOOST_PP_REMOVE_PARENS(DATA) // expands to 'data' BOOST_PP_REMOVE_PARENS(DATAP) // expands to 'data more_data'
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt)