From: bangerth Date: Tue, 18 Sep 2012 14:43:39 +0000 (+0000) Subject: Make compile with current gcc mainline. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6f6b23ff8c667113eaea9e196ef861f97b41f37;p=dealii-svn.git Make compile with current gcc mainline. git-svn-id: https://svn.dealii.org/trunk@26474 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/dofs/dof_tools.cc b/deal.II/source/dofs/dof_tools.cc index 6b7d727666..d49f42032f 100644 --- a/deal.II/source/dofs/dof_tools.cc +++ b/deal.II/source/dofs/dof_tools.cc @@ -5698,8 +5698,8 @@ namespace DoFTools const std::map::const_iterator j = weights[row].find(col); if ((j != weights[row].end()) && (j->second != 0)) - constraint_line.push_back (std::make_pair(representants[row], - j->second)); + constraint_line.push_back (std::pair(representants[row], + j->second)); }; constraints.add_entries (global_dof, constraint_line);