]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Move a function to its proper place.
authorWolfgang Bangerth <bangerth@colostate.edu>
Mon, 24 Jan 2022 18:19:35 +0000 (11:19 -0700)
committerWolfgang Bangerth <bangerth@colostate.edu>
Wed, 26 Jan 2022 18:34:00 +0000 (11:34 -0700)
include/deal.II/grid/reference_cell.h

index bdcb4fb6b355997a96bdd20549f24f8a55d81ed3..016476c862a09442f9c9bc6685c8fb906004ffd2 100644 (file)
@@ -1019,25 +1019,25 @@ ReferenceCell::n_faces() const
 
 
 inline std_cxx20::ranges::iota_view<unsigned int, unsigned int>
-ReferenceCell::vertex_indices() const
+ReferenceCell::face_indices() const
 {
-  return {0U, n_vertices()};
+  return {0U, n_faces()};
 }
 
 
 
 inline std_cxx20::ranges::iota_view<unsigned int, unsigned int>
-ReferenceCell::line_indices() const
+ReferenceCell::vertex_indices() const
 {
-  return {0U, n_lines()};
+  return {0U, n_vertices()};
 }
 
 
 
 inline std_cxx20::ranges::iota_view<unsigned int, unsigned int>
-ReferenceCell::face_indices() const
+ReferenceCell::line_indices() const
 {
-  return {0U, n_faces()};
+  return {0U, n_lines()};
 }
 
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.