From 2fc06d9437404e436f963482551ac7f0b295146e Mon Sep 17 00:00:00 2001 From: heltai Date: Thu, 16 Jan 2014 17:14:48 +0000 Subject: [PATCH] Correctly Deprecated Boundary git-svn-id: https://svn.dealii.org/branches/branch_manifold_id@32227 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/grid/tria_boundary.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/deal.II/include/deal.II/grid/tria_boundary.h b/deal.II/include/deal.II/grid/tria_boundary.h index a2374e777a..1dd66f8eec 100644 --- a/deal.II/include/deal.II/grid/tria_boundary.h +++ b/deal.II/include/deal.II/grid/tria_boundary.h @@ -97,14 +97,14 @@ template class Triangulation; * @deprecated A new Manifold class was introduced which * generalises the functionality of this * class. Boundary is no longer necessary, and should - * be replaced by any equivalent Manifold description. + * be replaced by any equivalent Manifold specialization. * * @ingroup boundary * @author Wolfgang Bangerth, 1999, 2001, 2009, Ralf Hartmann, 2001, 2008, * Luca Heltai 2013, 2014 */ template - class Boundary : public FlatManifold + class DEAL_II_DEPRECATED Boundary : public FlatManifold { public: @@ -114,7 +114,7 @@ public: */ virtual ~Boundary (); -} DEAL_II_DEPRECATED; +}; /** @@ -157,7 +157,8 @@ public: const std::vector > &points) const; -} DEAL_II_DEPRECATED; +}; + DEAL_II_NAMESPACE_CLOSE -- 2.39.5