From: bangerth Date: Wed, 10 Oct 2007 01:07:48 +0000 (+0000) Subject: Qualify a function call with std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34ddad4ea6aca722e5aa751a2ebc52476f368ff5;p=dealii-svn.git Qualify a function call with std:: git-svn-id: https://svn.dealii.org/trunk@15274 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/hp/dof_handler.cc b/deal.II/deal.II/source/hp/dof_handler.cc index e42b1f192a..d28efbc006 100644 --- a/deal.II/deal.II/source/hp/dof_handler.cc +++ b/deal.II/deal.II/source/hp/dof_handler.cc @@ -4404,10 +4404,10 @@ namespace hp // Check for each cell, if it // has children. - transform (tria.levels[i]->cells.children.begin (), - tria.levels[i]->cells.children.end (), - has_children_level->begin (), - std::bind2nd (std::not_equal_to(), -1)); + std::transform (tria.levels[i]->cells.children.begin (), + tria.levels[i]->cells.children.end (), + has_children_level->begin (), + std::bind2nd (std::not_equal_to(), -1)); has_children.push_back (has_children_level); }