]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/empty.hpp
update
[lyx.git] / boost / boost / preprocessor / empty.hpp
1 #ifndef BOOST_PREPROCESSOR_EMPTY_HPP
2 #define BOOST_PREPROCESSOR_EMPTY_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 /** <p>Expands to nothing.</p>
17
18 <p>For example,</p>
19
20 <pre>
21 BOOST_PP_IF(0,BOOST_PP_COMMA,BOOST_PP_EMPTY)()
22 </pre>
23
24 <p>expands to nothing.</p>
25
26 <h3>Example</h3>
27 <ul>
28   <li><a href="../../example/subscript_layer.cpp">subscript_layer.cpp</a></li>
29 </ul>
30
31 <h3>Test</h3>
32 <ul>
33   <li><a href="../../test/preprocessor_test.cpp">preprocessor_test.cpp</a></li>
34 </ul>
35 */
36 #define BOOST_PP_EMPTY()
37 #endif