From: David Wells Date: Sat, 12 Aug 2017 17:29:04 +0000 (-0400) Subject: Update some comments referring to Boundary. X-Git-Tag: v9.0.0-rc1~974^2~6 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa2dffec6d82bfa45a41935cd22eb740d1db231a;p=dealii.git Update some comments referring to Boundary. --- diff --git a/include/deal.II/fe/mapping_c1.h b/include/deal.II/fe/mapping_c1.h index 8a4f766ce1..b7cb930a48 100644 --- a/include/deal.II/fe/mapping_c1.h +++ b/include/deal.II/fe/mapping_c1.h @@ -33,9 +33,6 @@ DEAL_II_NAMESPACE_OPEN * class chooses them such that the discretized boundary is globally * continuously differentiable. * - * To use this class, make sure that the Boundary::get_normals_at_vertices() - * function is implemented for the user's boundary object. - * * @author Wolfgang Bangerth, 2001, 2015 */ template diff --git a/include/deal.II/grid/manifold.h b/include/deal.II/grid/manifold.h index f4bb2ac072..b2942a514d 100644 --- a/include/deal.II/grid/manifold.h +++ b/include/deal.II/grid/manifold.h @@ -428,10 +428,8 @@ public: * projects it to manifold itself. * * This class is used by the default implementation of the function - * get_new_point(). It should be made pure virtual, but for historical - * reason, derived classes like Boundary do not implement it. - * The default behavior of this class, however, is to throw an exception - * when called. + * get_new_point() and should be implemented by derived classes. The default + * implementation simply throws an exception if called. * * If your manifold is simple, you could implement this function only, and * the default behavior should work out of the box.