diff --git a/doc/throw_exception.html b/doc/throw_exception.html index d9eee8f..ab789e9 100644 --- a/doc/throw_exception.html +++ b/doc/throw_exception.html @@ -25,12 +25,12 @@
namespace
 boost
     {
-    #ifdef BOOST_NO_EXCEPTIONS
-        void throw_exception( std::exception const & e ); // user defined
-    #else
-        template <class E>
-        void throw_exception( E const & e );
-    #endif
+#ifdef BOOST_NO_EXCEPTIONS
+    void throw_exception( std::exception const & e ); // user defined
+#else
+    template <class E>
+    void throw_exception( E const & e );
+#endif
     }

Requirements:

E must derive publicly from std::exception.