From 7c720f93fbf51f97df02b669303f49cb057ec993 Mon Sep 17 00:00:00 2001
From: Wolfgang Bangerth <bangerth@colostate.edu>
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 <int dim, int spacedim>
   void
   map_dofs_to_support_points(
-    const dealii::hp::MappingCollection<dim, spacedim> &mapping,
-    const DoFHandler<dim, spacedim> &                   dof_handler,
-    std::vector<Point<spacedim>> &                      support_points,
-    const ComponentMask &                               mask = ComponentMask());
+    const hp::MappingCollection<dim, spacedim> &mapping,
+    const DoFHandler<dim, spacedim> &           dof_handler,
+    std::vector<Point<spacedim>> &              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 <int dim, int spacedim>
   std::map<types::global_dof_index, Point<spacedim>>
   map_dofs_to_support_points(
-    const dealii::hp::MappingCollection<dim, spacedim> &mapping,
-    const DoFHandler<dim, spacedim> &                   dof_handler,
-    const ComponentMask &                               mask = ComponentMask());
+    const hp::MappingCollection<dim, spacedim> &mapping,
+    const DoFHandler<dim, spacedim> &           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 <int dim, int spacedim>
   DEAL_II_DEPRECATED_EARLY void
   map_dofs_to_support_points(
-    const dealii::hp::MappingCollection<dim, spacedim> &mapping,
+    const hp::MappingCollection<dim, spacedim> &        mapping,
     const DoFHandler<dim, spacedim> &                   dof_handler,
     std::map<types::global_dof_index, Point<spacedim>> &support_points,
     const ComponentMask &                               mask = ComponentMask());
-- 
2.39.5