From: Wolfgang Bangerth <bangerth@colostate.edu>
Date: Mon, 24 Jan 2022 18:11:06 +0000 (-0700)
Subject: Make naming of function arguments more uniform.
X-Git-Tag: v9.4.0-rc1~568^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13286%2Fhead;p=dealii.git

Make naming of function arguments more uniform.

We don't usually use _n as a suffix to indicate a _number or _index. In fact,
the implementation of the function also doesn't use the suffix used here
in the declaration.
---

diff --git a/include/deal.II/grid/reference_cell.h b/include/deal.II/grid/reference_cell.h
index bdcb4fb6b3..5c911d95a3 100644
--- a/include/deal.II/grid/reference_cell.h
+++ b/include/deal.II/grid/reference_cell.h
@@ -344,8 +344,8 @@ public:
    * entry.
    */
   unsigned int
-  child_cell_on_face(const unsigned int  face_n,
-                     const unsigned int  subface_n,
+  child_cell_on_face(const unsigned int  face,
+                     const unsigned int  subface,
                      const unsigned char face_orientation = 1) const;
 
   /**