From: Peter Munch Date: Wed, 29 Sep 2021 08:25:49 +0000 (+0200) Subject: Make FEEvaluationBase::apply_hanging_node_constraints protected X-Git-Tag: v9.4.0-rc1~970^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12783%2Fhead;p=dealii.git Make FEEvaluationBase::apply_hanging_node_constraints protected --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 972e122f09..31e1718c8d 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -1273,6 +1273,13 @@ protected: const VectorOperation & operation, const std::array &vectors) const; + /** + * Apply hanging-node constraints. + */ + template + void + apply_hanging_node_constraints() const; + /** * This field stores the values for local degrees of freedom (e.g. after * reading out from a vector but before applying unit cell transformations @@ -1417,13 +1424,6 @@ private: */ void set_data_pointers(); - - /** - * Apply hanging-node constraints. - */ - template - void - apply_hanging_node_constraints() const; };