summaryrefslogtreecommitdiffstats
path: root/src/ftvhelp.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-10-19 08:18:07 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-10-19 08:18:07 (GMT)
commite847d5dc322740b0097f56fc19311c8c74a44a55 (patch)
treec227b2ee5b7223ba8ee2400b3c9def44773e9803 /src/ftvhelp.cpp
parentccca51f80ce6a4c380545800f6ea8b5ae27c8724 (diff)
downloadDoxygen-e847d5dc322740b0097f56fc19311c8c74a44a55.zip
Doxygen-e847d5dc322740b0097f56fc19311c8c74a44a55.tar.gz
Doxygen-e847d5dc322740b0097f56fc19311c8c74a44a55.tar.bz2
issue #8103: C++ Table of content, namespace list does not contains namespace without class
Diffstat (limited to 'src/ftvhelp.cpp')
-rw-r--r--src/ftvhelp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ftvhelp.cpp b/src/ftvhelp.cpp
index 6fc14bf..b34f644 100644
--- a/src/ftvhelp.cpp
+++ b/src/ftvhelp.cpp
@@ -167,7 +167,7 @@ void FTVHelp::finalize()
*/
void FTVHelp::incContentsDepth()
{
- //printf("incContentsDepth() indent=%d\n",m_indent);
+ //printf("%p: incContentsDepth() indent=%d\n",this,m_indent);
m_indent++;
ASSERT(m_indent<MAX_INDENT);
}
@@ -178,7 +178,7 @@ void FTVHelp::incContentsDepth()
*/
void FTVHelp::decContentsDepth()
{
- //printf("decContentsDepth() indent=%d\n",m_indent);
+ //printf("%p: decContentsDepth() indent=%d\n",this,m_indent);
ASSERT(m_indent>0);
if (m_indent>0)
{