From: wolf Date: Thu, 10 Oct 2002 21:48:08 +0000 (+0000) Subject: Add std:: in two places, where it is not strictly necessary due to X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d12e3991612f96390a3b2a35be93176e5675022;p=dealii-svn.git Add std:: in two places, where it is not strictly necessary due to Koenig lookup, but clarifies the situation somewhat. git-svn-id: https://svn.dealii.org/trunk@6627 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_renumbering.cc b/deal.II/deal.II/source/dofs/dof_renumbering.cc index a1964b0b23..c1fceedd5e 100644 --- a/deal.II/deal.II/source/dofs/dof_renumbering.cc +++ b/deal.II/deal.II/source/dofs/dof_renumbering.cc @@ -836,8 +836,8 @@ DoFRenumbering::downstream_dg (MGDoFHandler& dof, typename MGDoFHandler::cell_iterator begin = dof.begin(level); typename MGDoFHandler::cell_iterator end = dof.end(level); - copy (begin, end, ordered_cells.begin()); - sort (ordered_cells.begin(), ordered_cells.end(), comparator); + std::copy (begin, end, ordered_cells.begin()); + std::sort (ordered_cells.begin(), ordered_cells.end(), comparator); cell_wise_dg(dof, level, ordered_cells); }