From 875a5e8ef56d77afa5d213db42ec78e755eee611 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 14 May 2024 06:53:31 -0600 Subject: [PATCH] Deprecate two fields in MeshWorker::LocalIntegrator. These fields are not used in the library. They are better placed in derived classes. --- include/deal.II/meshworker/local_integrator.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/deal.II/meshworker/local_integrator.h b/include/deal.II/meshworker/local_integrator.h index 6bc4bcbf52..6bba6c36ad 100644 --- a/include/deal.II/meshworker/local_integrator.h +++ b/include/deal.II/meshworker/local_integrator.h @@ -120,7 +120,11 @@ namespace MeshWorker * * @note This variable is currently not used by the library, but it is * provided to help develop application programs. + * + * @deprecated Because the library itself does not use this field, it is + * better placed in derived classes. */ + DEAL_II_DEPRECATE_EARLY std::vector input_vector_names; /** @@ -130,7 +134,11 @@ namespace MeshWorker * * @note This variable is currently not used by the library, but it is * provided to help develop application programs. + * + * @deprecated Because the library itself does not use this field, it is + * better placed in derived classes. */ + DEAL_II_DEPRECATE_EARLY std::vector output_names; /** -- 2.39.5