From: Wolfgang Bangerth Date: Wed, 9 Sep 2015 11:09:20 +0000 (-0500) Subject: Expand DEAL_II_NAMESPACE_OPEN/CLOSE to nothing for doxygen. X-Git-Tag: v8.4.0-rc2~452^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=655c74045c7d82096b847ace5904c099d05d9288;p=dealii.git Expand DEAL_II_NAMESPACE_OPEN/CLOSE to nothing for doxygen. It showed up in at least one place in the HTML output. Avoid this by ensuring that it is simply expanded to nothing. --- diff --git a/doc/doxygen/options.dox.in b/doc/doxygen/options.dox.in index 0819620f83..eb55665af1 100644 --- a/doc/doxygen/options.dox.in +++ b/doc/doxygen/options.dox.in @@ -153,6 +153,10 @@ INCLUDE_FILE_PATTERNS = # set a few variables that help us generate documentation for # things like the PETSc and Trilinos wrappers, even if they were # not configured +# +# in the case of DEAL_II_NAMESPACE_OPEN/CLOSE, just expand them +# to nothing so that they don't show up in the documentation +# at all. PREDEFINED = DOXYGEN=1 \ DEBUG=1 \ DEAL_II_USE_MT_POSIX=1 \ @@ -174,7 +178,9 @@ PREDEFINED = DOXYGEN=1 \ DEAL_II_WITH_TRILINOS=1 \ DEAL_II_WITH_TRILINOS =1 \ DEAL_II_WITH_UMFPACK=1 \ - DEAL_II_WITH_ZLIB=1 + DEAL_II_WITH_ZLIB=1 \ + DEAL_II_NAMESPACE_OPEN= \ + DEAL_II_NAMESPACE_CLOSE= # do not expand exception declarations EXPAND_AS_DEFINED = DeclException0 \