Docs update

[SVN r13144]
This commit is contained in:
Vesa Karvonen
2002-03-09 13:55:00 +00:00
parent da66351f86
commit 1ad72e98a9
38 changed files with 273 additions and 9 deletions

View File

@ -17,7 +17,10 @@
#include <boost/preprocessor/logical/not.hpp>
/** <p>Expands to nothing if <code>C != 0</code> and to <code>MSG</code> if
<code>C == 0</code>.</p> */
<code>C == 0</code>.</p>
<p>For example, <code>BOOST_PP_ASSERT_MSG(1,A BUG!)</code> expands to <code>A BUG!</code>.</p>
*/
#define BOOST_PP_ASSERT_MSG(C,MSG) BOOST_PP_IF_THEN(BOOST_PP_NOT(C),MSG)
/** <p>Obsolete. Use BOOST_PP_ASSERT_MSG().</p> */