From: Dustin Kumor Date: Fri, 24 Aug 2018 12:42:12 +0000 (+0200) Subject: Corrected push_back-command argument and added a changelog file X-Git-Tag: v9.1.0-rc1~781^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0baa4a29fa7621d5ff6e4d4a2d9692bcbd6ebf5a;p=dealii.git Corrected push_back-command argument and added a changelog file --- diff --git a/doc/news/changes/minor/20180824DustinKumor b/doc/news/changes/minor/20180824DustinKumor new file mode 100644 index 0000000000..e1f21785e3 --- /dev/null +++ b/doc/news/changes/minor/20180824DustinKumor @@ -0,0 +1,4 @@ +Fixed: Member function AffineConstraints::add_entries() now skippes already +existing entries. +
+(Dustin Kumor, 2018/08/24) \ No newline at end of file diff --git a/include/deal.II/lac/affine_constraints.templates.h b/include/deal.II/lac/affine_constraints.templates.h index 57845147f2..740e2d79f5 100644 --- a/include/deal.II/lac/affine_constraints.templates.h +++ b/include/deal.II/lac/affine_constraints.templates.h @@ -267,7 +267,7 @@ AffineConstraints::add_entries( } if (entry_exists == false) - line_ptr->entries.push_back(*col_val_pair); + line_ptr->entries.push_back(col_val_pair); } }