From 8248d7ca0cc1fe9648bfb67b234e714a05dbbc7f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 3 Jul 2023 13:16:10 -0600 Subject: [PATCH] Fix the name of a variable. --- include/deal.II/lac/affine_constraints.templates.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; -- 2.39.5