From: Daniel Arndt Date: Thu, 9 Jan 2020 18:39:48 +0000 (-0500) Subject: Remove specialization for GeometryInfo<1>::face_to_cell_lines X-Git-Tag: v9.2.0-rc1~701^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=516a9a71651ac32c559b1726cac07069d7575c00;p=dealii.git Remove specialization for GeometryInfo<1>::face_to_cell_lines --- diff --git a/include/deal.II/base/geometry_info.h b/include/deal.II/base/geometry_info.h index ee20c7c1d9..9bd8fbcbdc 100644 --- a/include/deal.II/base/geometry_info.h +++ b/include/deal.II/base/geometry_info.h @@ -4272,26 +4272,6 @@ GeometryInfo<4>::child_cell_on_face(const RefinementCase<4> &, -template <> -inline unsigned int -GeometryInfo<1>::face_to_cell_lines(const unsigned int face, - const unsigned int line, - const bool, - const bool, - const bool) -{ - (void)face; - (void)line; - Assert(face + 1 < faces_per_cell + 1, ExcIndexRange(face, 0, faces_per_cell)); - Assert(line + 1 < lines_per_face + 1, ExcIndexRange(line, 0, lines_per_face)); - - // There is only a single line, so - // it must be this. - return 0; -} - - - template <> inline unsigned int GeometryInfo<2>::face_to_cell_lines(const unsigned int face,