From f90d07c4519f633867225bf1fffe1dc481543e5e Mon Sep 17 00:00:00 2001 From: Dustin Kumor Date: Fri, 24 Aug 2018 18:20:55 +0200 Subject: [PATCH] Fixed compiling error due to misapplication of variable names and types Former ConstraintLine pointer (line_ptr) is now a ConstraintLine reference (line) --- include/deal.II/lac/affine_constraints.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.5