From: Wolfgang Bangerth Date: Mon, 24 Jan 2022 18:19:35 +0000 (-0700) Subject: Move a function to its proper place. X-Git-Tag: v9.4.0-rc1~564^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9767f3eea5ad97498189d65307e1ceb38e16c13;p=dealii.git Move a function to its proper place. --- 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()}; }