From 5f8ea22003396ff0fcd592df48e1a51f8cb87a81 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 25 Jan 2002 12:18:09 +0000 Subject: [PATCH] Fix bugs. git-svn-id: https://svn.dealii.org/trunk@5404 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/parameter_handler.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/deal.II/base/include/base/parameter_handler.h b/deal.II/base/include/base/parameter_handler.h index 36d7db7218..7bbe02e5c8 100644 --- a/deal.II/base/include/base/parameter_handler.h +++ b/deal.II/base/include/base/parameter_handler.h @@ -168,7 +168,7 @@ namespace Patterns * understands that all values * are allowed. */ - static const unsigned int min_int_value = + static const int min_int_value = #ifdef HAVE_STD_NUMERIC_LIMITS std::numeric_limits::min(); #else @@ -183,7 +183,7 @@ namespace Patterns * understands that all values * are allowed. */ - static const unsigned int max_int_value = + static const int max_int_value = #ifdef HAVE_STD_NUMERIC_LIMITS std::numeric_limits::max(); #else @@ -308,7 +308,7 @@ namespace Patterns * understands that all values * are allowed. */ - static const unsigned int min_double_value = + static const double min_double_value = #ifdef HAVE_STD_NUMERIC_LIMITS std::numeric_limits::min(); #else @@ -323,7 +323,7 @@ namespace Patterns * understands that all values * are allowed. */ - static const unsigned int max_double_value = + static const double max_double_value = #ifdef HAVE_STD_NUMERIC_LIMITS std::numeric_limits::max(); #else @@ -342,8 +342,8 @@ namespace Patterns * such that no bounds are * enforced on parameters. */ - Double (const int lower_bound = min_double_value, - const int upper_bound = max_double_value); + Double (const double lower_bound = min_double_value, + const double upper_bound = max_double_value); /** * Return @p{true} if the -- 2.39.5