From 516a9a71651ac32c559b1726cac07069d7575c00 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 9 Jan 2020 13:39:48 -0500 Subject: [PATCH] Remove specialization for GeometryInfo<1>::face_to_cell_lines --- include/deal.II/base/geometry_info.h | 20 -------------------- 1 file changed, 20 deletions(-) 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, -- 2.39.5