From 0d80288f88dca4cbb56b7b9e7541e56c514c4891 Mon Sep 17 00:00:00 2001 From: guido Date: Fri, 9 Jan 2004 12:03:52 +0000 Subject: [PATCH] Doc for doxygen git-svn-id: https://svn.dealii.org/trunk@8292 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/exceptions.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/deal.II/base/include/base/exceptions.h b/deal.II/base/include/base/exceptions.h index 7007c41a10..2cd11f8b61 100644 --- a/deal.II/base/include/base/exceptions.h +++ b/deal.II/base/include/base/exceptions.h @@ -113,6 +113,7 @@ * Assert (i>m, ExcSomewhat()); * * @subsection ExceptionBaseInternal How it works internally + * * If the DEBUG preprocessor directive is set, the call Assert * (cond, exc); is basically converted by the preprocessor into the * sequence (note that function names and exact calling sequences may @@ -194,7 +195,7 @@ * message about suppressed follow-up messages is shown. * * - * @section ExceptionBaseUse Use of run-time exceptions + * @section ExceptionBaseUse2 Use of run-time exceptions * * For this mode, the standard C++ throw and catch concept exists. We * want to keep to this, but want to extend it a bit. In general, the @@ -525,7 +526,7 @@ namespace deal_II_exceptions /** * Abort the program. This function is used so that we need not - * include into this file since it is included into all + * include cstdlib into this file since it is included into all * other files of the library and we would like to keep its include * list as short as possible. */ @@ -748,8 +749,10 @@ class Exception5 : public ExceptionBase { \ * Declare some exceptions that occur over and over. This way, you can * simply use these exceptions, instead of having to declare them * locally in your class. The namespace in which these exceptions are - * declared is later included into the global namespace by @p{using - * namespace StandardExceptions;}. + * declared is later included into the global namespace by + * @code + * using namespace StandardExceptions; + * @endcode */ namespace StandardExceptions { -- 2.39.5