From: Luca Heltai Date: Tue, 8 Mar 2005 08:57:23 +0000 (+0000) Subject: Fixed (hopefully) bug that prevented intel compiler to end the compilation. X-Git-Tag: v8.0.0~14489 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ba33a6f86119c8b3000976a7fe5a72d98d40cef;p=dealii.git Fixed (hopefully) bug that prevented intel compiler to end the compilation. git-svn-id: https://svn.dealii.org/trunk@10039 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/function_parser.h b/deal.II/base/include/base/function_parser.h index 170a79f1f8..d4f38011d7 100644 --- a/deal.II/base/include/base/function_parser.h +++ b/deal.II/base/include/base/function_parser.h @@ -250,7 +250,7 @@ class FunctionParser : public Function */ void initialize(const std::string vars, const std::vector expressions, - const ConstMap constants = 0, + const ConstMap constants, bool time_dependent = false, bool use_degrees = false); @@ -287,7 +287,7 @@ class FunctionParser : public Function */ void initialize(const std::string vars, const std::string expression, - const ConstMap constants = 0, + const ConstMap constants, bool time_dependent = false, bool use_degrees = false);