From 1ad72e98a90a3427d2c2a7cff3d0ac2b7e355890 Mon Sep 17 00:00:00 2001 From: Vesa Karvonen Date: Sat, 9 Mar 2002 13:55:00 +0000 Subject: [PATCH] Docs update [SVN r13144] --- doc/reference/assert_msg.htm | 5 ++++- doc/reference/cat.htm | 2 ++ doc/reference/comma.htm | 13 ++++++++++++- doc/reference/comma_if.htm | 2 ++ doc/reference/comparison_equal.htm | 2 ++ doc/reference/comparison_greater.htm | 2 ++ doc/reference/comparison_greater_equal.htm | 2 ++ doc/reference/comparison_less.htm | 2 ++ doc/reference/comparison_less_equal.htm | 2 ++ doc/reference/comparison_not_equal.htm | 2 ++ doc/reference/empty.htm | 10 +++++++++- doc/reference/enum.htm | 14 ++++++++++++++ doc/reference/enum_params.htm | 12 ++++++++++++ doc/reference/enum_params_with_a_default.htm | 12 ++++++++++++ doc/reference/enum_params_with_defaults.htm | 12 ++++++++++++ doc/reference/enum_shifted.htm | 14 ++++++++++++++ doc/reference/enum_shifted_params.htm | 11 +++++++++++ doc/reference/for.htm | 15 +++++++++++++++ doc/reference/if_then.htm | 2 ++ include/boost/preprocessor/assert_msg.hpp | 5 ++++- include/boost/preprocessor/cat.hpp | 2 ++ include/boost/preprocessor/comma.hpp | 13 ++++++++++++- include/boost/preprocessor/comma_if.hpp | 2 ++ include/boost/preprocessor/comparison/equal.hpp | 2 ++ include/boost/preprocessor/comparison/greater.hpp | 2 ++ .../preprocessor/comparison/greater_equal.hpp | 2 ++ include/boost/preprocessor/comparison/less.hpp | 2 ++ .../boost/preprocessor/comparison/less_equal.hpp | 2 ++ .../boost/preprocessor/comparison/not_equal.hpp | 2 ++ include/boost/preprocessor/empty.hpp | 10 +++++++++- include/boost/preprocessor/enum.hpp | 14 ++++++++++++++ include/boost/preprocessor/enum_params.hpp | 12 ++++++++++++ .../preprocessor/enum_params_with_a_default.hpp | 12 ++++++++++++ .../preprocessor/enum_params_with_defaults.hpp | 12 ++++++++++++ include/boost/preprocessor/enum_shifted.hpp | 14 ++++++++++++++ .../boost/preprocessor/enum_shifted_params.hpp | 11 +++++++++++ include/boost/preprocessor/for.hpp | 15 +++++++++++++++ include/boost/preprocessor/if_then.hpp | 12 +++++++++--- 38 files changed, 273 insertions(+), 9 deletions(-) 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