From: Martin Kronbichler Date: Fri, 1 Oct 2021 13:32:25 +0000 (+0200) Subject: MappingManifold: Do not expose the fill_fe_*values functions as public X-Git-Tag: v9.4.0-rc1~967^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd631732f98078b409af26e3762a1eaf299bbd94;p=dealii.git MappingManifold: Do not expose the fill_fe_*values functions as public --- 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;