Tweaking docs

[SVN r12604]
This commit is contained in:
Vesa Karvonen
2002-01-31 14:21:31 +00:00
parent f1590b8c08
commit 2261c57310
66 changed files with 495 additions and 680 deletions

View File

@ -13,16 +13,11 @@
* See http://www.boost.org for most recent version.
*/
/** \file
<a href="../../../../boost/preprocessor/logical/nor.hpp">Click here to see the header.</a>
*/
#include <boost/preprocessor/logical/bool.hpp>
/** Expands to the logical NEITHER OR of the operands.
/** <P>Expands to the logical NEITHER OR of the operands.</P>
For example, BOOST_PP_NOR(0,5) expands to 0 (a single token).
<P>For example, BOOST_PP_NOR(0,5) expands to 0 (a single token).</P>
*/
#define BOOST_PP_NOR(X,Y) BOOST_PP_NOR_BOOL(BOOST_PP_BOOL(X),BOOST_PP_BOOL(Y))
@ -35,6 +30,6 @@ For example, BOOST_PP_NOR(0,5) expands to 0 (a single token).
#define BOOST_PP_NOR_BOOL11 0
#endif
/** Obsolete. Use BOOST_PP_NOR(). */
/** <P>Obsolete. Use BOOST_PP_NOR().</P> */
#define BOOST_PREPROCESSOR_NOR(X,Y) BOOST_PP_NOR(X,Y)
#endif