From: Wolfgang Bangerth 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=a7809f6904fa3ff4a2d145959d80f0b698cad997;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; /**