From: Dustin Kumor Date: Fri, 24 Aug 2018 16:20:55 +0000 (+0200) Subject: Fixed compiling error due to misapplication of variable names and types X-Git-Tag: v9.1.0-rc1~781^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f90d07c4519f633867225bf1fffe1dc481543e5e;p=dealii.git Fixed compiling error due to misapplication of variable names and types Former ConstraintLine pointer (line_ptr) is now a ConstraintLine reference (line) --- diff --git a/include/deal.II/lac/affine_constraints.templates.h b/include/deal.II/lac/affine_constraints.templates.h index 740e2d79f5..8066c0c371 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.entries.push_back(col_val_pair); } }