From: Martin Kronbichler Date: Tue, 16 Mar 2021 15:37:38 +0000 (+0100) Subject: Fix storage of boundary id in MatrixFree X-Git-Tag: v9.3.0-rc1~320^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=592a3930118c8542120174bd888fa6893afe063a;p=dealii.git Fix storage of boundary id in MatrixFree --- diff --git a/include/deal.II/matrix_free/face_info.h b/include/deal.II/matrix_free/face_info.h index 2e1e01ef5a..6ba9da2279 100644 --- a/include/deal.II/matrix_free/face_info.h +++ b/include/deal.II/matrix_free/face_info.h @@ -77,17 +77,17 @@ namespace internal /** * Index of the face between 0 and GeometryInfo::faces_per_cell within - * the cells on the "interior" side of the faces. + * the cells on the "exterior" side of the faces. + * + * For a boundary face, this data field stores the boundary id. */ - unsigned char interior_face_no; + types::boundary_id exterior_face_no; /** * Index of the face between 0 and GeometryInfo::faces_per_cell within - * the cells on the "exterior" side of the faces. - * - * For a boundary face, this data field stores the boundary id. + * the cells on the "interior" side of the faces. */ - unsigned char exterior_face_no; + unsigned char interior_face_no; /** * For adaptively refined meshes, the cell on the exterior side of the