From: David Wells Date: Sat, 4 Jan 2025 18:40:18 +0000 (-0500) Subject: Remove some extra braces. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b764b8005b6b4a2ff2d7ea1d717afcfd0cec6c17;p=dealii.git Remove some extra braces. --- diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index 0906841f71..b3ea594ba4 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -7694,9 +7694,7 @@ CellAccessor::face_index(const unsigned int i) const switch (dim) { case 1: - { - return this->vertex_index(i); - } + return this->vertex_index(i); case 2: return this->line_index(i);