fixed typo

[SVN r9836]
This commit is contained in:
John Maddock
2001-04-19 10:53:11 +00:00
parent 362a22e3a7
commit 5d68bc2fd8

View File

@ -77,7 +77,7 @@ template<int> struct static_assert_test{};
// The following piece of macro magic joins the two // The following piece of macro magic joins the two
// arguments together, even when one of the arguments is // arguments together, even when one of the arguments is
// itself a macro (see 16.3.1 in C++ standard). The key // itself a macro (see 16.3.1 in C++ standard). The key
// is that macro expantion of macro arguments does not // is that macro expansion of macro arguments does not
// occur in BOOST_DO_ASSERT_JOIN but does in BOOST_ASSERT_JOIN // occur in BOOST_DO_ASSERT_JOIN but does in BOOST_ASSERT_JOIN
// provided it is called from within another macro. // provided it is called from within another macro.
#define BOOST_ASSERT_JOIN( X, Y ) BOOST_DO_ASSERT_JOIN( X, Y ) #define BOOST_ASSERT_JOIN( X, Y ) BOOST_DO_ASSERT_JOIN( X, Y )
@ -87,3 +87,4 @@ template<int> struct static_assert_test{};