Skip to content

Commit

Permalink
Disabled debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed May 28, 2016
1 parent 5f9d80b commit 3e03e42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -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)
{
Expand Down

0 comments on commit 3e03e42

Please sign in to comment.