]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/assert.hpp
typos
[lyx.git] / boost / boost / assert.hpp
index 3428efb7d5346d59587a728e89301cd16831b726..5619f29898eaf8b6425d4b664d509a658d57d396 100644 (file)
@@ -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 <assert.h>
+# include <assert.h> // .h to support old libraries w/o <cassert> - effect is the same
 # define BOOST_ASSERT(expr) assert(expr)
 #endif