From f9fe6e1ee28158507f8034c8e612e0fdfd86250f Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Tue, 2 Sep 2008 21:24:55 +0000 Subject: [PATCH] documentation fix [SVN r48545] --- doc/throw_exception.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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.