Skip to content

Commit

Permalink
Bug 770973 - Tag file size double between each run
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Oct 8, 2016
1 parent d4c24c2 commit 155bd01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/doxygen.cpp
Expand Up @@ -2592,7 +2592,7 @@ static MemberDef *addVariableToFile(
}

Debug::print(Debug::Variables,0,
" new variable, nd=%s!\n",nd?qPrint(nd->name()):"<global>");
" new variable, nd=%s tagInfo=%p!\n",nd?qPrint(nd->name()):"<global>",rootNav->tagInfo());
// new global variable, enum value or typedef
MemberDef *md=new MemberDef(
fileName,root->startLine,root->startColumn,
Expand Down
2 changes: 1 addition & 1 deletion src/memberdef.cpp
Expand Up @@ -1082,7 +1082,7 @@ void MemberDef::_computeLinkableInProject()
m_isLinkableCached = 1; // not a valid or a dummy name
return;
}
if (!hasDocumentation() && !isReference())
if (!hasDocumentation() || isReference())
{
//printf("no docs or reference\n");
m_isLinkableCached = 1; // no documentation
Expand Down

0 comments on commit 155bd01

Please sign in to comment.