From 5e7ad3f4e8d15ce8cd87e583c90204dc7affcbb6 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 21 Oct 2010 15:59:43 +0000 Subject: [PATCH] Make compile. git-svn-id: https://svn.dealii.org/trunk@22423 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/parameter_handler.cc | 25 ++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/deal.II/base/source/parameter_handler.cc b/deal.II/base/source/parameter_handler.cc index 04349eb53d..3b7b22944c 100644 --- a/deal.II/base/source/parameter_handler.cc +++ b/deal.II/base/source/parameter_handler.cc @@ -217,7 +217,7 @@ namespace Patterns std::string Double::description () const { std::ostringstream description; - + // check whether valid bounds // were specified, and if so // output their values @@ -232,10 +232,11 @@ namespace Patterns else // if no bounds were given, then // return generic string - { - description << description_init - << "]"; - return description.str(); + { + description << description_init + << "]"; + return description.str(); + } } @@ -284,12 +285,12 @@ namespace Patterns std::string Selection::description () const { std::ostringstream description; - + description << description_init << " " << sequence << " ]"; - + return description.str(); } @@ -498,12 +499,12 @@ namespace Patterns std::string MultipleSelection::description () const { std::ostringstream description; - + description << description_init << " " << sequence << " ]"; - + return description.str(); } @@ -555,10 +556,10 @@ namespace Patterns std::string Anything::description () const { std::ostringstream description; - + description << description_init - << "]" - + << "]"; + return description.str(); } -- 2.39.5