summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-11-11 13:15:29 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-11-11 13:15:29 (GMT)
commit51ab08fa5bded3db613d06909fc6d3109c0a9a4c (patch)
tree87daa647d54cc76f2d041d2a0a2a386f15367b12
parentdc3aa117751718ab391be094243e9c966c126440 (diff)
downloadDoxygen-51ab08fa5bded3db613d06909fc6d3109c0a9a4c.zip
Doxygen-51ab08fa5bded3db613d06909fc6d3109c0a9a4c.tar.gz
Doxygen-51ab08fa5bded3db613d06909fc6d3109c0a9a4c.tar.bz2
Remove debug statements
Removing some debug statements
-rw-r--r--src/latexdocvisitor.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/latexdocvisitor.cpp b/src/latexdocvisitor.cpp
index 56691cf..958bc54 100644
--- a/src/latexdocvisitor.cpp
+++ b/src/latexdocvisitor.cpp
@@ -215,7 +215,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()) << "}";
@@ -1252,7 +1251,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 << "}";