summaryrefslogtreecommitdiffstats
path: root/src/template.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-09-13 12:09:01 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-05-28 14:20:01 (GMT)
commit3e03e42e2b10bf2ccba5ab35e52c665ac35cfa15 (patch)
tree7750ac4ce24492381e2c1045e5269c7d4060ba21 /src/template.cpp
parent5f9d80b2ce73a7e7fb0f4fc16f3ef5fee0cf8105 (diff)
downloadDoxygen-3e03e42e2b10bf2ccba5ab35e52c665ac35cfa15.zip
Doxygen-3e03e42e2b10bf2ccba5ab35e52c665ac35cfa15.tar.gz
Doxygen-3e03e42e2b10bf2ccba5ab35e52c665ac35cfa15.tar.bz2
Disabled debug prints
Diffstat (limited to 'src/template.cpp')
-rw-r--r--src/template.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/template.cpp b/src/template.cpp
index 527148c..69eb440 100644
--- a/src/template.cpp
+++ b/src/template.cpp
@@ -2439,7 +2439,7 @@ void TemplateContextImpl::warn(const char *fileName,int line,const char *fmt,...
void TemplateContextImpl::openSubIndex(const QCString &indexName)
{
- printf("TemplateContextImpl::openSubIndex(%s)\n",indexName.data());
+ //printf("TemplateContextImpl::openSubIndex(%s)\n",indexName.data());
QStack<TemplateVariant> *stack = m_indexStacks.find(indexName);
if (!stack || stack->isEmpty() || stack->top()->type()==TemplateVariant::List) // error: no stack yet or no entry
{
@@ -2460,7 +2460,7 @@ void TemplateContextImpl::openSubIndex(const QCString &indexName)
void TemplateContextImpl::closeSubIndex(const QCString &indexName)
{
- printf("TemplateContextImpl::closeSubIndex(%s)\n",indexName.data());
+ //printf("TemplateContextImpl::closeSubIndex(%s)\n",indexName.data());
QStack<TemplateVariant> *stack = m_indexStacks.find(indexName);
if (!stack || stack->count()<3)
{