From bac2aef262e7f0821407e3ebc532ed49195904f1 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Wed, 15 May 2019 14:00:20 -0600 Subject: [PATCH] undeprecate get_mg_dof_indices fixes #7887 While the general function makes sense in assembly, this function is useful in other situations and makes code more expressive. --- include/deal.II/dofs/dof_accessor.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/include/deal.II/dofs/dof_accessor.h b/include/deal.II/dofs/dof_accessor.h index 0687cc682a..f6e424f38d 100644 --- a/include/deal.II/dofs/dof_accessor.h +++ b/include/deal.II/dofs/dof_accessor.h @@ -168,7 +168,7 @@ namespace internal * either type or the other. Additionally, they can be cast into each other, * in case this is needed, since they access the same data. * - * It is highly recommended to use the function get_active_or_mg_dof_indices() + * It is recommended to use the function get_active_or_mg_dof_indices() * in generic loops in lieu of get_dof_indices() or get_mg_dof_indices(). * *

Inheritance

@@ -1832,13 +1832,10 @@ public: get_dof_indices(std::vector &dof_indices) const; /** - * @deprecated Use get_active_or_mg_dof_indices() with level_cell_iterator - * returned from begin_mg(). - * * Retrieve the global indices of the degrees of freedom on this cell in the * level vector associated to the level of the cell. */ - DEAL_II_DEPRECATED void + void get_mg_dof_indices(std::vector &dof_indices) const; /** -- 2.39.5