]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/logical/not.hpp
c739145b2e63aae97bb41efbc482cbb0d5653e26
[lyx.git] / boost / boost / preprocessor / logical / not.hpp
1 # /* Copyright (C) 2001
2 #  * Housemarque Oy
3 #  * http://www.housemarque.com
4 #  *
5 #  * Permission to copy, use, modify, sell and distribute this software is
6 #  * granted provided this copyright notice appears in all copies. This
7 #  * software is provided "as is" without express or implied warranty, and
8 #  * with no claim as to its suitability for any purpose.
9 #  */
10 #
11 # /* Revised by Paul Mensonides (2002) */
12 #
13 # /* See http://www.boost.org for most recent version. */
14 #
15 # ifndef BOOST_PREPROCESSOR_LOGICAL_NOT_HPP
16 # define BOOST_PREPROCESSOR_LOGICAL_NOT_HPP
17 #
18 # include <boost/preprocessor/config/config.hpp>
19 # include <boost/preprocessor/logical/bool.hpp>
20 # include <boost/preprocessor/logical/compl.hpp>
21 #
22 # /* BOOST_PP_NOT */
23 #
24 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
25 #    define BOOST_PP_NOT(x) BOOST_PP_COMPL(BOOST_PP_BOOL(x))
26 # else
27 #    define BOOST_PP_NOT(x) BOOST_PP_NOT_I(x)
28 #    define BOOST_PP_NOT_I(x) BOOST_PP_COMPL(BOOST_PP_BOOL(x))
29 # endif
30 #
31 # endif