From 2411d61a678252e0ee9f2497421ac8b19083d69d Mon Sep 17 00:00:00 2001 From: kronbichler Date: Thu, 9 Sep 2010 10:01:05 +0000 Subject: [PATCH] Make compile with Intel compiler. git-svn-id: https://svn.dealii.org/trunk@21905 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/parameter_handler.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/base/source/parameter_handler.cc b/deal.II/base/source/parameter_handler.cc index 85f4ffc2cb..c5e3819e44 100644 --- a/deal.II/base/source/parameter_handler.cc +++ b/deal.II/base/source/parameter_handler.cc @@ -1095,7 +1095,7 @@ ParameterHandler::print_parameters_section (std::ostream &out, // (and discard sub-tree // nodes) and take the // maximum of their lengths - unsigned int longest_name = 0; + std::size_t longest_name = 0; for (boost::property_tree::ptree::const_iterator p = current_section.begin(); p != current_section.end(); ++p) @@ -1108,7 +1108,7 @@ ParameterHandler::print_parameters_section (std::ostream &out, // make sure we can align the // default and documentation // strings - unsigned int longest_value = 0; + std::size_t longest_value = 0; for (boost::property_tree::ptree::const_iterator p = current_section.begin(); p != current_section.end(); ++p) @@ -1226,7 +1226,7 @@ ParameterHandler::print_parameters_section (std::ostream &out, // first find out the longest // entry name to be able to // align the equal signs - unsigned int longest_name = 0; + std::size_t longest_name = 0; for (boost::property_tree::ptree::const_iterator p = current_section.begin(); p != current_section.end(); ++p) -- 2.39.5