From: David Wells Date: Fri, 28 Aug 2015 21:48:24 +0000 (-0400) Subject: Fix a doxygen issue with quoted italics. X-Git-Tag: v8.4.0-rc2~531^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87c95250ac9affcbe4ab0027e3a48239b40f326c;p=dealii.git Fix a doxygen issue with quoted italics. Under certain circumstances Doxygen treats text surrounded by double quotes as a verbatim environment, e.g., doxygen will convert '' into '<i%gt;', which is not what we want when italicising text. --- diff --git a/doc/doxygen/headers/update_flags.h b/doc/doxygen/headers/update_flags.h index 9136e245c1..5932570735 100644 --- a/doc/doxygen/headers/update_flags.h +++ b/doc/doxygen/headers/update_flags.h @@ -88,9 +88,9 @@ * producing a set of flags amounts to setting multiple bits * in an integer, which is facilitated using the operation * update_gradients | update_JxW_values (in other words, and - * maybe slightly confusingly so, the operation "this operation and that - * operation" is represented by the expression "single-bit-in-an-integer-for-this-operation - * binary-or single-bit-in-an-integer-for-that-operation"). To + * maybe slightly confusingly so, the operation @"this operation and that + * operation@" is represented by the expression @"single-bit-in-an-integer-for-this-operation + * binary-or single-bit-in-an-integer-for-that-operation@"). To * make operations cheaper, FEValues and the mapping and finite element objects * it depends on really only compute those pieces of information that you * have specified in the update flags (plus some information necessary to diff --git a/doc/news/8.1.0-vs-8.2.0.h b/doc/news/8.1.0-vs-8.2.0.h index dd3959066b..8cc6872109 100644 --- a/doc/news/8.1.0-vs-8.2.0.h +++ b/doc/news/8.1.0-vs-8.2.0.h @@ -50,14 +50,14 @@ inconvenience this causes.
  • Removed: The constructor of the Utilities::MPI::MPI_InitFinalize class used to interpret a last argument equal to numbers::invalid_unsigned_int - as "create as many threads as there are processor cores on the current - system" for each MPI process. If there were multiple MPI processes on a + as @"create as many threads as there are processor cores on the current + system@" for each MPI process. If there were multiple MPI processes on a given node, this would lead to (sometimes massive) overallocation of resources because every MPI process would create as many threads as there are cores. This has now been changed: an argument equal to numbers::invalid_unsigned_int - is now interpreted as "subdivide the available cores between all MPI + is now interpreted as @"subdivide the available cores between all MPI processes running on the current system and let each process create as many - threads as cores were allocated to it". + threads as cores were allocated to it@".
    (Wolfgang Bangerth, 2014/09/16)