From 694ab0efce70d0d5f7daea60922620f7523f46e6 Mon Sep 17 00:00:00 2001
From: guido <guido@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Tue, 12 Jul 2005 22:09:36 +0000
Subject: [PATCH] add missing instantiations

git-svn-id: https://svn.dealii.org/trunk@11133 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/deal.II/source/grid/geometry_info.cc | 29 ++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/deal.II/deal.II/source/grid/geometry_info.cc b/deal.II/deal.II/source/grid/geometry_info.cc
index 759eddab8b..7280afa11d 100644
--- a/deal.II/deal.II/source/grid/geometry_info.cc
+++ b/deal.II/deal.II/source/grid/geometry_info.cc
@@ -210,6 +210,35 @@ GeometryInfo<3>::line_to_cell_vertices (const unsigned int line,
 
 
 
+//TODO:[GK] Is this the correct notion in 1D?
+template <>
+unsigned int
+GeometryInfo<1>::face_to_cell_lines (const unsigned int face,
+				     const unsigned int line,
+				     const bool)
+{
+  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));
+
+  return face;
+}
+
+
+
+template <>
+unsigned int
+GeometryInfo<2>::face_to_cell_lines (const unsigned int face,
+				     const unsigned int line,
+				     const bool)
+{
+  Assert (face<faces_per_cell, ExcIndexRange(face, 0, faces_per_cell));
+  Assert (line<lines_per_face, ExcIndexRange(line, 0, lines_per_face));
+
+  return face;
+}
+
+
+
 template <>
 unsigned int
 GeometryInfo<3>::face_to_cell_lines (const unsigned int face,
-- 
2.39.5