]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/throw_exception.hpp
Don't need this.
[lyx.git] / boost / boost / throw_exception.hpp
index 2250befb9072e8c877ad8ee95ecb70c7384d9297..a5a5f9ea0bf96d9999a1bd32882293b16525e4a2 100644 (file)
@@ -56,7 +56,7 @@ inline void throw_exception_assert_compatibility( std::exception const & ) { }
 
 template<class E> 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);