From: Wolfgang Bangerth Date: Thu, 20 Apr 2023 23:37:51 +0000 (-0600) Subject: Avoid a problem with doxygen by just not prefixing some class names with dealii::. X-Git-Tag: v9.5.0-rc1~296^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15051%2Fhead;p=dealii.git 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. --- 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());