From: Wolfgang Bangerth Date: Fri, 6 Oct 2000 09:38:04 +0000 (+0000) Subject: Avoid warnings when trying to use doubles as arguments for an int parameter. X-Git-Tag: v8.0.0~20050 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d26bfa15072aed3221b87a43a451792e9631e44a;p=dealii.git Avoid warnings when trying to use doubles as arguments for an int parameter. git-svn-id: https://svn.dealii.org/trunk@3381 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/time_dependent.h b/deal.II/deal.II/include/numerics/time_dependent.h index c04a07d827..b2048eb86d 100644 --- a/deal.II/deal.II/include/numerics/time_dependent.h +++ b/deal.II/deal.II/include/numerics/time_dependent.h @@ -1707,7 +1707,7 @@ struct TimeStepBase_Tria::RefinementFlags * Exception */ DeclException1 (ExcInvalidValue, - int, + double, << "The following value does not fulfil the requirements: " << arg1); };