]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/logical/xor.hpp
update boost
[lyx.git] / boost / boost / preprocessor / logical / xor.hpp
1 #ifndef BOOST_PREPROCESSOR_LOGICAL_XOR_HPP
2 #define BOOST_PREPROCESSOR_LOGICAL_XOR_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/logical/and.hpp>
17
18 /** <p>Expands to the logical EXCLUSIVE OR of the operands.</p>
19
20 <p>Both <code>X</code> and <code>Y</code> must expand to integer literals
21 in the range [0, BOOST_PP_LIMIT_MAG].</p>
22
23 <p>For example, <code>BOOST_PP_XOR(1,2)</code> expands to <code>0</code> (a single token).</p>
24
25 <h3>Test</h3>
26 <ul>
27   <li><a href="../../test/logical_test.cpp">logical_test.cpp</a></li>
28 </ul>
29 */
30 #define BOOST_PP_XOR(X,Y) BOOST_PP_NOR(BOOST_PP_NOR(X,Y),BOOST_PP_AND(X,Y))
31 #endif