From: bangerth Date: Thu, 21 Oct 2010 15:59:43 +0000 (+0000) Subject: Make compile. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e7ad3f4e8d15ce8cd87e583c90204dc7affcbb6;p=dealii-svn.git Make compile. git-svn-id: https://svn.dealii.org/trunk@22423 0785d39b-7218-0410-832d-ea1e28bc413d --- 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(); }