]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/expand.hpp
major boost update
[lyx.git] / boost / boost / preprocessor / expand.hpp
1 #ifndef BOOST_PREPROCESSOR_EXPAND_HPP
2 #define BOOST_PREPROCESSOR_EXPAND_HPP
3
4 /* Copyright (C) 2001
5  * Housemarque Oy
6  * http://www.housemarque.com
7  *
8  * Permission to copy, use, modify, sell and distribute this software is
9  * granted provided this copyright notice appears in all copies. This
10  * software is provided "as is" without express or implied warranty, and
11  * with no claim as to its suitability for any purpose.
12  *
13  * See http://www.boost.org for most recent version.
14  */
15
16 #include <boost/preprocessor/identity.hpp>
17
18 /** <p>Essentially macro expands the parameter <code>X</code> twice.</p> */
19 #define BOOST_PP_EXPAND(X) X
20 #endif