summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-08-31 11:08:06 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-08-31 11:08:06 (GMT)
commita9f1c59479e316ab277521faa2a629f25fde25ba (patch)
tree4537faa580ad7be142a20bdc719c69f2a461f888 /src/latexgen.cpp
parenta3ef054f5d2af360fa7541e01a6de102d1c7c147 (diff)
downloadDoxygen-a9f1c59479e316ab277521faa2a629f25fde25ba.zip
Doxygen-a9f1c59479e316ab277521faa2a629f25fde25ba.tar.gz
Doxygen-a9f1c59479e316ab277521faa2a629f25fde25ba.tar.bz2
Missing opening round bracket in case of an exception
In case of RTF / LaTeX the opening round bracket was missing after the word "throw" (see e.g. in the manual the `\fn` example the detailed function description)
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 204683e..13a88a9 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -2159,7 +2159,7 @@ void LatexGenerator::endParameterName(bool last,bool /*emptyList*/,bool closeBra
void LatexGenerator::exceptionEntry(const char* prefix,bool closeBracket)
{
if (prefix)
- t << " " << prefix;
+ t << " " << prefix << "(";
else if (closeBracket)
t << ")";
t << " ";