PREPROCESSOR -> PP. WHILE documented.

[SVN r12162]
This commit is contained in:
Vesa Karvonen
2001-12-28 11:06:53 +00:00
parent 5991b00456
commit d8b52a3a42
90 changed files with 3441 additions and 1889 deletions

View File

@ -17,10 +17,14 @@
<a href="../../../../boost/preprocessor/logical/not.hpp">Click here to see the header.</a>
*/
#ifndef BOOST_PREPROCESSOR_LOGICAL_NOR_HPP
# include <boost/preprocessor/logical/nor.hpp>
#endif
#include <boost/preprocessor/logical/nor.hpp>
//! Expands to the logical NOT of the operand.
#define BOOST_PREPROCESSOR_NOT(X) BOOST_PREPROCESSOR_NOR(X,X)
/*!
For example, BOOST_PP_NOT(0) expands to 1 (a single token).
*/
#define BOOST_PP_NOT(X) BOOST_PP_NOR(X,X)
//! Obsolete. Use BOOST_PP_NOT().
#define BOOST_PREPROCESSOR_NOT(X) BOOST_PP_NOT(X)
#endif