From: Wolfgang Bangerth Date: Sat, 8 Feb 2025 03:57:10 +0000 (-0700) Subject: Prevent doxygen from making a mess. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18101%2Fhead;p=dealii.git Prevent doxygen from making a mess. --- diff --git a/source/gmsh/utilities.cc b/source/gmsh/utilities.cc index 03b589e79e..c0016071af 100644 --- a/source/gmsh/utilities.cc +++ b/source/gmsh/utilities.cc @@ -142,7 +142,13 @@ namespace Gmsh // explicit instantiations # ifdef DEAL_II_WITH_OPENCASCADE -# include "gmsh/utilities.inst" +// We don't build the utilities.inst file if deal.II isn't configured +// with GMSH, but doxygen doesn't know that and tries to find that +// file anyway for parsing -- which then of course it fails on. So +// exclude the following from doxygen consideration. +# ifndef DOXYGEN +# include "gmsh/utilities.inst" +# endif # endif } // namespace Gmsh