diff options
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 593ca69..8f99b30 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -2387,6 +2387,14 @@ void LatexGenerator::endParameterName(bool last,bool /* emptyList */,bool closeB } } +void LatexGenerator::exceptionEntry(const char* prefix,bool closeBracket) +{ + if (prefix) + t << " " << prefix; + else if (closeBracket) + t << ")"; + t << " "; +} void LatexGenerator::writeDoc(DocNode *n,Definition *ctx,MemberDef *) { |