From a7809f6904fa3ff4a2d145959d80f0b698cad997 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 24 Jan 2022 11:11:06 -0700 Subject: [PATCH] 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. --- include/deal.II/grid/reference_cell.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; /** -- 2.39.5