From 7c720f93fbf51f97df02b669303f49cb057ec993 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 20 Apr 2023 17:37:51 -0600 Subject: [PATCH] Avoid a problem with doxygen by just not prefixing some class names with dealii::. Apparently this wasn't necessary anyway because it compiles just fine. --- include/deal.II/dofs/dof_tools.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/deal.II/dofs/dof_tools.h b/include/deal.II/dofs/dof_tools.h index d6880e9aa5..29e078c11f 100644 --- a/include/deal.II/dofs/dof_tools.h +++ b/include/deal.II/dofs/dof_tools.h @@ -2248,10 +2248,10 @@ namespace DoFTools template void map_dofs_to_support_points( - const dealii::hp::MappingCollection &mapping, - const DoFHandler & dof_handler, - std::vector> & support_points, - const ComponentMask & mask = ComponentMask()); + const hp::MappingCollection &mapping, + const DoFHandler & dof_handler, + std::vector> & support_points, + const ComponentMask & mask = ComponentMask()); /** * This function is a version of the above map_dofs_to_support_points @@ -2294,9 +2294,9 @@ namespace DoFTools template std::map> map_dofs_to_support_points( - const dealii::hp::MappingCollection &mapping, - const DoFHandler & dof_handler, - const ComponentMask & mask = ComponentMask()); + const hp::MappingCollection &mapping, + const DoFHandler & dof_handler, + const ComponentMask & mask = ComponentMask()); /** * A version of the function of same name that returns the map via its third @@ -2319,7 +2319,7 @@ namespace DoFTools template DEAL_II_DEPRECATED_EARLY void map_dofs_to_support_points( - const dealii::hp::MappingCollection &mapping, + const hp::MappingCollection & mapping, const DoFHandler & dof_handler, std::map> &support_points, const ComponentMask & mask = ComponentMask()); -- 2.39.5