From e36b6abb826edd9ac0e646b87cf80c3e8b379863 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Wed, 16 Dec 2009 22:25:34 +0000 Subject: [PATCH] Error in a comment. [SVN r58420] --- include/boost/throw_exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/throw_exception.hpp b/include/boost/throw_exception.hpp index b835004..54aab7b 100644 --- a/include/boost/throw_exception.hpp +++ b/include/boost/throw_exception.hpp @@ -57,7 +57,7 @@ inline void throw_exception_assert_compatibility( std::exception const & ) { } template BOOST_ATTRIBUTE_NORETURN inline void throw_exception( E const & e ) { - //All boost exceptions are required to derive std::exception, + //All boost exceptions are required to derive from std::exception, //to ensure compatibility with BOOST_NO_EXCEPTIONS. throw_exception_assert_compatibility(e);