]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/preprocessor/logical/not.hpp
update boost to version 1.29.0
[lyx.git] / boost / boost / preprocessor / logical / not.hpp
index 158998b9096219d4e6b94f90c25bdcaed4ff09da..c739145b2e63aae97bb41efbc482cbb0d5653e26 100644 (file)
@@ -1,30 +1,31 @@
-#ifndef BOOST_PREPROCESSOR_LOGICAL_NOT_HPP
-#define BOOST_PREPROCESSOR_LOGICAL_NOT_HPP
-
-/* Copyright (C) 2001
- * Housemarque Oy
- * http://www.housemarque.com
- *
- * Permission to copy, use, modify, sell and distribute this software is
- * granted provided this copyright notice appears in all copies. This
- * software is provided "as is" without express or implied warranty, and
- * with no claim as to its suitability for any purpose.
- *
- * See http://www.boost.org for most recent version.
- */
-
-#include <boost/preprocessor/logical/nor.hpp>
-
-/** <p>Expands to the logical NOT of the operand.</p>
-
-<p><code>X</code> must be an integer literal in the range [0, BOOST_PP_LIMIT_MAG].</p>
-
-<p>For example, <code>BOOST_PP_NOT(0)</code> expands to <code>1</code> (a single token).</p>
-
-<h3>Test</h3>
-<ul>
-  <li><a href="../../test/logical_test.cpp">logical_test.cpp</a></li>
-</ul>
-*/
-#define BOOST_PP_NOT(X) BOOST_PP_NOR(X,X)
-#endif
+# /* Copyright (C) 2001
+#  * Housemarque Oy
+#  * http://www.housemarque.com
+#  *
+#  * Permission to copy, use, modify, sell and distribute this software is
+#  * granted provided this copyright notice appears in all copies. This
+#  * software is provided "as is" without express or implied warranty, and
+#  * with no claim as to its suitability for any purpose.
+#  */
+#
+# /* Revised by Paul Mensonides (2002) */
+#
+# /* See http://www.boost.org for most recent version. */
+#
+# ifndef BOOST_PREPROCESSOR_LOGICAL_NOT_HPP
+# define BOOST_PREPROCESSOR_LOGICAL_NOT_HPP
+#
+# include <boost/preprocessor/config/config.hpp>
+# include <boost/preprocessor/logical/bool.hpp>
+# include <boost/preprocessor/logical/compl.hpp>
+#
+# /* BOOST_PP_NOT */
+#
+# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
+#    define BOOST_PP_NOT(x) BOOST_PP_COMPL(BOOST_PP_BOOL(x))
+# else
+#    define BOOST_PP_NOT(x) BOOST_PP_NOT_I(x)
+#    define BOOST_PP_NOT_I(x) BOOST_PP_COMPL(BOOST_PP_BOOL(x))
+# endif
+#
+# endif