From f3f4c594e5fbbdb54b4de31ecb2db36790653483 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 28 Nov 2023 17:08:09 -0700 Subject: [PATCH] Better place a set of parentheses. --- source/dofs/dof_handler_policy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dofs/dof_handler_policy.cc b/source/dofs/dof_handler_policy.cc index 38ca81c57b..fc0593469a 100644 --- a/source/dofs/dof_handler_policy.cc +++ b/source/dofs/dof_handler_policy.cc @@ -2995,7 +2995,7 @@ namespace internal unsigned int end_index = 0; while (start_index < n_dofs) { - while ((end_index) < n_dofs && + while ((end_index < n_dofs) && (subdomain_association[end_index] == subdomain_association[start_index])) ++end_index; -- 2.39.5