From: Martin Kronbichler Date: Wed, 1 Jun 2022 13:40:41 +0000 (+0200) Subject: Remove another inclusion of hanging_nodes_internal.h. Documentation. X-Git-Tag: v9.4.0-rc1~81^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8a7584290d4f0cb05bc6fe7f3d30a2ebceefd1d;p=dealii.git Remove another inclusion of hanging_nodes_internal.h. Documentation. --- diff --git a/include/deal.II/matrix_free/dof_info.h b/include/deal.II/matrix_free/dof_info.h index 4f042dea79..65f37a734e 100644 --- a/include/deal.II/matrix_free/dof_info.h +++ b/include/deal.II/matrix_free/dof_info.h @@ -30,7 +30,6 @@ #include #include -#include #include #include #include @@ -59,6 +58,12 @@ namespace internal { namespace MatrixFreeFunctions { + /** + * Type of the 8-bit representation of the refinement configuration that + * is in hanging_nodes_internal.h. + */ + using compressed_constraint_kind = std::uint8_t; + /** * A struct that takes entries describing a constraint and puts them into * a sorted list where duplicates are filtered out diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index a4db4b46dc..7987649224 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include diff --git a/include/deal.II/matrix_free/hanging_nodes_internal.h b/include/deal.II/matrix_free/hanging_nodes_internal.h index d7bfbb3143..dbbdbae3a9 100644 --- a/include/deal.II/matrix_free/hanging_nodes_internal.h +++ b/include/deal.II/matrix_free/hanging_nodes_internal.h @@ -71,7 +71,7 @@ namespace internal /** - * Type of the 9-bit representation of the refinement configuration. + * Type of the 8-bit representation of the refinement configuration. */ using compressed_constraint_kind = std::uint8_t; diff --git a/source/dofs/dof_renumbering.cc b/source/dofs/dof_renumbering.cc index 6a536218b2..18e6ea7994 100644 --- a/source/dofs/dof_renumbering.cc +++ b/source/dofs/dof_renumbering.cc @@ -26,6 +26,7 @@ #include #include +#include #include #include