From c70bce556c2ed1d20bb587332050d87cbf505249 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 4 Jan 2006 08:20:12 +0000 Subject: [PATCH] Doc update. git-svn-id: https://svn.dealii.org/trunk@11942 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/parameter_handler.h | 11 +++++++++++ 1 file changed, 11 insertions(+) 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); -- 2.39.5