diff --git a/doc/reference/assert_msg.htm b/doc/reference/assert_msg.htm index 9011897..d5d1734 100644 --- a/doc/reference/assert_msg.htm +++ b/doc/reference/assert_msg.htm @@ -28,7 +28,10 @@

#define BOOST_PP_ASSERT_MSG(C,MSG)

Expands to nothing if C != 0 and to MSG if -C == 0.

+C == 0.

+ +

For example, BOOST_PP_ASSERT_MSG(1,A BUG!) expands to A BUG!.

+

#define BOOST_PREPROCESSOR_ASSERT_MSG(C,MSG)

diff --git a/doc/reference/cat.htm b/doc/reference/cat.htm index 974edfb..808f93a 100644 --- a/doc/reference/cat.htm +++ b/doc/reference/cat.htm @@ -30,6 +30,8 @@

Concatenates X and Y after they are macro expanded.

+

For example, BOOST_PP_CAT(A,BOOST_PP_CAT(_,B)) expands to A_B.

+

Example