From 0279f42ec1512993d64355d7944db139fa9130d5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 14 May 2024 06:55:18 -0600 Subject: [PATCH] Add a changelog entry. --- doc/news/changes/minor/20240514Bangerth | 6 ++++++ include/deal.II/meshworker/local_integrator.h | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 doc/news/changes/minor/20240514Bangerth diff --git a/doc/news/changes/minor/20240514Bangerth b/doc/news/changes/minor/20240514Bangerth new file mode 100644 index 0000000000..3da189bf17 --- /dev/null +++ b/doc/news/changes/minor/20240514Bangerth @@ -0,0 +1,6 @@ +Deprecated: The member variables `input_vector_names` and +`output_names` of MeshWorker::LocalIntegrator are not used in the +library. They are now deprecated. If you use them, simply introduce +variables of the same name and type in your own derived class. +
+(Wolfgang Bangerth, 2024/05/14) diff --git a/include/deal.II/meshworker/local_integrator.h b/include/deal.II/meshworker/local_integrator.h index 6bba6c36ad..785a72b197 100644 --- a/include/deal.II/meshworker/local_integrator.h +++ b/include/deal.II/meshworker/local_integrator.h @@ -124,7 +124,7 @@ namespace MeshWorker * @deprecated Because the library itself does not use this field, it is * better placed in derived classes. */ - DEAL_II_DEPRECATE_EARLY + DEAL_II_DEPRECATED_EARLY std::vector input_vector_names; /** @@ -138,7 +138,7 @@ namespace MeshWorker * @deprecated Because the library itself does not use this field, it is * better placed in derived classes. */ - DEAL_II_DEPRECATE_EARLY + DEAL_II_DEPRECATED_EARLY std::vector output_names; /** -- 2.39.5