From: Martin Kronbichler Date: Thu, 9 Sep 2010 10:01:05 +0000 (+0000) Subject: Make compile with Intel compiler. X-Git-Tag: v8.0.0~5553 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=566dd3415401a116377a282fc489a2d007b2a45d;p=dealii.git Make compile with Intel compiler. git-svn-id: https://svn.dealii.org/trunk@21905 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)