From: Wolfgang Bangerth Date: Mon, 3 Jul 2023 19:16:10 +0000 (-0600) Subject: Fix the name of a variable. X-Git-Tag: relicensing~782^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8248d7ca0cc1fe9648bfb67b234e714a05dbbc7f;p=dealii.git Fix the name of a variable. --- diff --git a/include/deal.II/lac/affine_constraints.templates.h b/include/deal.II/lac/affine_constraints.templates.h index d951ddb6f4..144363464a 100644 --- a/include/deal.II/lac/affine_constraints.templates.h +++ b/include/deal.II/lac/affine_constraints.templates.h @@ -914,9 +914,8 @@ AffineConstraints::close() { // make sure that entry->first is not the index of // a line itself - const bool is_circle = - is_constrained(entry.first); - if (is_circle) + const bool is_cycle = is_constrained(entry.first); + if (is_cycle) return true; } return false;