From 526e2d77e097a62537829e1f84a54db8e83ffb6c Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 22 Aug 2001 20:47:14 +0000 Subject: [PATCH] Fix a missing std::, as pointed out by Benjamin Kirk (benkirk@cfdlab.ae.utexas.edu) git-svn-id: https://svn.dealii.org/trunk@4905 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_constraints.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/dofs/dof_constraints.cc b/deal.II/deal.II/source/dofs/dof_constraints.cc index 0c0b594545..3f22cc3120 100644 --- a/deal.II/deal.II/source/dofs/dof_constraints.cc +++ b/deal.II/deal.II/source/dofs/dof_constraints.cc @@ -415,7 +415,7 @@ void ConstraintMatrix::merge (const ConstraintMatrix &other_constraints) for (std::vector >::const_iterator j=tmp_other_lines[i]->entries.begin(); j!=tmp_other_lines[i]->entries.end(); ++j) - tmp.push_back (make_pair(j->first, j->second*weight)); + tmp.push_back (std::make_pair(j->first, j->second*weight)); }; }; // finally exchange old and -- 2.39.5