From 20522c6670c1b2d6b2c632de9a90177146b9d169 Mon Sep 17 00:00:00 2001 From: David Wells Date: Fri, 28 Dec 2018 16:01:34 -0500 Subject: [PATCH] Add a few missing DEAL_II_DEPRECATED attributes. --- include/deal.II/dofs/dof_accessor.h | 2 +- include/deal.II/fe/fe_update_flags.h | 8 ++++---- include/deal.II/meshworker/simple.h | 2 +- include/deal.II/numerics/point_value_history.h | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/include/deal.II/dofs/dof_accessor.h b/include/deal.II/dofs/dof_accessor.h index 4bd746724a..ae18260877 100644 --- a/include/deal.II/dofs/dof_accessor.h +++ b/include/deal.II/dofs/dof_accessor.h @@ -1838,7 +1838,7 @@ public: * Retrieve the global indices of the degrees of freedom on this cell in the * level vector associated to the level of the cell. */ - void + DEAL_II_DEPRECATED void get_mg_dof_indices(std::vector &dof_indices) const; /** diff --git a/include/deal.II/fe/fe_update_flags.h b/include/deal.II/fe/fe_update_flags.h index 2399adec30..181425091d 100644 --- a/include/deal.II/fe/fe_update_flags.h +++ b/include/deal.II/fe/fe_update_flags.h @@ -132,11 +132,11 @@ enum UpdateFlags /** * @deprecated Use #update_normal_vectors instead. */ - update_face_normal_vectors = update_normal_vectors, + update_face_normal_vectors DEAL_II_DEPRECATED = update_normal_vectors, /** * @deprecated Use #update_normal_vectors instead. */ - update_cell_normal_vectors = update_normal_vectors, + update_cell_normal_vectors DEAL_II_DEPRECATED = update_normal_vectors, //! Volume element /** * Compute the Jacobian of the transformation from the reference cell to the @@ -211,11 +211,11 @@ enum UpdateFlags /** * @deprecated Use #update_quadrature_points instead. */ - update_q_points = update_quadrature_points, + update_q_points DEAL_II_DEPRECATED = update_quadrature_points, /** * @deprecated Use #update_hessians instead. */ - update_second_derivatives = update_hessians, + update_second_derivatives DEAL_II_DEPRECATED = update_hessians, //! Values needed for Piola transform /** * Combination of the flags needed for Piola transform of Hdiv elements. diff --git a/include/deal.II/meshworker/simple.h b/include/deal.II/meshworker/simple.h index 3a91188ab2..3b3dce73cc 100644 --- a/include/deal.II/meshworker/simple.h +++ b/include/deal.II/meshworker/simple.h @@ -86,7 +86,7 @@ namespace MeshWorker * In spite of using local block structure, all blocks will be entered * into the same global matrix, disregarding any global block structure. */ - + DEAL_II_DEPRECATED void initialize_local_blocks(const BlockIndices &); diff --git a/include/deal.II/numerics/point_value_history.h b/include/deal.II/numerics/point_value_history.h index 3e7ed4a103..c9d57b4dd9 100644 --- a/include/deal.II/numerics/point_value_history.h +++ b/include/deal.II/numerics/point_value_history.h @@ -480,6 +480,7 @@ public: * get_support_locations replaces it and reflects the fact that the points * returned are actually the support points. */ + DEAL_II_DEPRECATED void get_points(std::vector>> &locations); -- 2.39.5