From: Wolfgang Bangerth Date: Wed, 4 Jan 2006 08:20:12 +0000 (+0000) Subject: Doc update. X-Git-Tag: v8.0.0~12717 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c70bce556c2ed1d20bb587332050d87cbf505249;p=dealii.git Doc update. git-svn-id: https://svn.dealii.org/trunk@11942 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/parameter_handler.h b/deal.II/base/include/base/parameter_handler.h index 81223ececa..068a9e124f 100644 --- a/deal.II/base/include/base/parameter_handler.h +++ b/deal.II/base/include/base/parameter_handler.h @@ -1393,6 +1393,17 @@ class ParameterHandler void set (const std::string &entry_name, const std::string &new_value); + /** + * Same as above, but an overload where + * the second argument is a character + * pointer. This is necessary, since + * otherwise the call to + * set("abc","def") will be + * mapped to the function taking one + * string and a bool as arguments, which + * is certainly not what is most often + * intended. + */ void set (const std::string &entry_name, const char *new_value);