From: heltai Date: Tue, 3 Dec 2013 23:27:34 +0000 (+0000) Subject: Removed get_new_points from Boundary, since it inherits the one from FlatManifold X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0b5015475cbefba263b0f7fed6b848bde110c33;p=dealii-svn.git Removed get_new_points from Boundary, since it inherits the one from FlatManifold git-svn-id: https://svn.dealii.org/branches/branch_manifold_id@31866 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/tria_boundary.h b/deal.II/include/deal.II/grid/tria_boundary.h index e2a58c8a8e..85abb09c76 100644 --- a/deal.II/include/deal.II/grid/tria_boundary.h +++ b/deal.II/include/deal.II/grid/tria_boundary.h @@ -115,10 +115,6 @@ public: Point get_new_point_on_line (const typename Triangulation::line_iterator &line) const = 0; - virtual - Point - get_new_point(const std::vector > &, const std::vector &) const; - /** * Return the point which shall become the common point of the four children * of a quad at the boundary in three or more spatial dimensions. This diff --git a/deal.II/source/grid/tria_boundary.cc b/deal.II/source/grid/tria_boundary.cc index f4efafdf5b..56031cde91 100644 --- a/deal.II/source/grid/tria_boundary.cc +++ b/deal.II/source/grid/tria_boundary.cc @@ -44,17 +44,6 @@ get_new_point_on_quad (const typename Triangulation::quad_iterato return Point(); } -template -Point -Boundary:: -get_new_point (const std::vector > &, - const std::vector &) const -{ - Assert (false, ExcPureFunctionCalled()); - return Point(); -} - - template void Boundary::