From: wolf Date: Tue, 4 Feb 2003 21:53:55 +0000 (+0000) Subject: Add forgotten std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c67c36e596e027f477616be7b5694f2b920cdd0;p=dealii-svn.git Add forgotten std:: git-svn-id: https://svn.dealii.org/trunk@7018 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_constraints.cc b/deal.II/deal.II/source/dofs/dof_constraints.cc index ac89c9d434..1bb745694f 100644 --- a/deal.II/deal.II/source/dofs/dof_constraints.cc +++ b/deal.II/deal.II/source/dofs/dof_constraints.cc @@ -208,9 +208,9 @@ void ConstraintMatrix::close () // another node times 0 // appears. obviously, // 0*something can be omitted - line->entries.erase (remove_if (line->entries.begin(), - line->entries.end(), - &check_zero_weight), + line->entries.erase (std::remove_if (line->entries.begin(), + line->entries.end(), + &check_zero_weight), line->entries.end()); // now sort the remainder