From 518cc74ef9c70fb78d42f3bde3094d6de9301b06 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 7 Sep 2023 14:13:13 -0600 Subject: [PATCH] Mark deprecated functions with DEAL_II_DEPRECATE_EARLY. --- include/deal.II/dofs/dof_tools.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/dofs/dof_tools.h b/include/deal.II/dofs/dof_tools.h index ce4ac531f0..4989fbc0d3 100644 --- a/include/deal.II/dofs/dof_tools.h +++ b/include/deal.II/dofs/dof_tools.h @@ -1575,7 +1575,7 @@ namespace DoFTools * @deprecated Use the previous function instead. */ template - void + DEAL_II_DEPRECATED_EARLY void extract_locally_active_dofs(const DoFHandler &dof_handler, IndexSet &dof_set); @@ -1600,7 +1600,7 @@ namespace DoFTools * @deprecated Use the previous function instead. */ template - void + DEAL_II_DEPRECATED_EARLY void extract_locally_active_level_dofs( const DoFHandler &dof_handler, IndexSet &dof_set, @@ -1630,7 +1630,7 @@ namespace DoFTools * @deprecated Use the previous function instead. */ template - void + DEAL_II_DEPRECATED_EARLY void extract_locally_relevant_dofs(const DoFHandler &dof_handler, IndexSet &dof_set); @@ -1702,7 +1702,7 @@ namespace DoFTools * @deprecated Use the previous function instead. */ template - void + DEAL_II_DEPRECATED_EARLY void extract_locally_relevant_level_dofs( const DoFHandler &dof_handler, const unsigned int level, -- 2.39.5