diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-11-11 14:09:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-11 14:09:45 (GMT) |
commit | 50fd576df4e346761a08f84b502ad976295d487c (patch) | |
tree | 31436398838dcee1bdf6cabb10036b7bb93a1bc7 /src/latexdocvisitor.cpp | |
parent | 6d0cd13b0afabaea9dfbe0a9e354b9e278bc15de (diff) | |
parent | 51ab08fa5bded3db613d06909fc6d3109c0a9a4c (diff) | |
download | Doxygen-50fd576df4e346761a08f84b502ad976295d487c.zip Doxygen-50fd576df4e346761a08f84b502ad976295d487c.tar.gz Doxygen-50fd576df4e346761a08f84b502ad976295d487c.tar.bz2 |
Merge pull request #6611 from albert-github/feature/bug_debug_latexdocvisitor
Remove debug statements
Diffstat (limited to 'src/latexdocvisitor.cpp')
-rw-r--r-- | src/latexdocvisitor.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp index 7663572..77795ee 100644 --- a/src/latexdocvisitor.cpp +++ b/src/latexdocvisitor.cpp @@ -294,7 +294,6 @@ void LatexDocVisitor::visit(DocURL *u) if (m_hide) return; if (Config_getBool(PDF_HYPERLINKS)) { - m_t << endl << "%% AME " << u->url() <<endl; m_t << "\\href{"; if (u->isEmail()) m_t << "mailto:"; m_t << latexFilterURL(u->url()) << "}"; @@ -1331,7 +1330,6 @@ void LatexDocVisitor::visitPre(DocHRef *href) if (m_hide) return; if (Config_getBool(PDF_HYPERLINKS)) { - m_t << endl << "%% AME " << href->url() <<endl; m_t << "\\href{"; m_t << latexFilterURL(href->url()); m_t << "}"; |