From bd631732f98078b409af26e3762a1eaf299bbd94 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Fri, 1 Oct 2021 15:32:25 +0200 Subject: [PATCH] MappingManifold: Do not expose the fill_fe_*values functions as public --- include/deal.II/fe/mapping_manifold.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/deal.II/fe/mapping_manifold.h b/include/deal.II/fe/mapping_manifold.h index 6efece4634..623ae57559 100644 --- a/include/deal.II/fe/mapping_manifold.h +++ b/include/deal.II/fe/mapping_manifold.h @@ -152,7 +152,6 @@ public: * @{ */ -public: /** * Storage for internal data of polynomial mappings. See * Mapping::InternalDataBase for an extensive description. @@ -195,7 +194,6 @@ public: const Quadrature &quadrature, const unsigned int n_original_q_points); - /** * Compute the weights associated to the Manifold object, that * need to be passed when computing the location of the quadrature @@ -238,7 +236,6 @@ public: */ Quadrature quad; - /** * Values of quadrature weights for manifold quadrature * formulas. @@ -259,7 +256,6 @@ public: */ std::vector> cell_manifold_quadrature_weights; - /** * A vector of weights for use in Manifold::get_new_point(). For * each point (interior to a cell), we compute the weight each @@ -332,7 +328,7 @@ public: mutable SmartPointer> manifold; }; - +private: // documentation can be found in Mapping::requires_update_flags() virtual UpdateFlags requires_update_flags(const UpdateFlags update_flags) const override; -- 2.39.5