From c9767f3eea5ad97498189d65307e1ceb38e16c13 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 24 Jan 2022 11:19:35 -0700 Subject: [PATCH] Move a function to its proper place. --- include/deal.II/grid/reference_cell.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/deal.II/grid/reference_cell.h b/include/deal.II/grid/reference_cell.h index bdcb4fb6b3..016476c862 100644 --- a/include/deal.II/grid/reference_cell.h +++ b/include/deal.II/grid/reference_cell.h @@ -1019,25 +1019,25 @@ ReferenceCell::n_faces() const inline std_cxx20::ranges::iota_view -ReferenceCell::vertex_indices() const +ReferenceCell::face_indices() const { - return {0U, n_vertices()}; + return {0U, n_faces()}; } inline std_cxx20::ranges::iota_view -ReferenceCell::line_indices() const +ReferenceCell::vertex_indices() const { - return {0U, n_lines()}; + return {0U, n_vertices()}; } inline std_cxx20::ranges::iota_view -ReferenceCell::face_indices() const +ReferenceCell::line_indices() const { - return {0U, n_faces()}; + return {0U, n_lines()}; } -- 2.39.5