From 6bb092a9b1e85c2e912532cc0b0a15c19095bfa2 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Mon, 21 Feb 2005 12:32:20 +0000 Subject: [PATCH] Add comment explaining use of assert.h [SVN r27473] --- include/boost/assert.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/assert.hpp b/include/boost/assert.hpp index 3428efb..5619f29 100644 --- a/include/boost/assert.hpp +++ b/include/boost/assert.hpp @@ -32,6 +32,6 @@ void assertion_failed(char const * expr, char const * function, char const * fil #define BOOST_ASSERT(expr) ((expr)? ((void)0): ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__)) #else -# include +# include // .h to support old libraries w/o - effect is the same # define BOOST_ASSERT(expr) assert(expr) #endif