Skip to content

Commit

Permalink
issue #8476: Call graph regression: Some parts are mixed up
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Aug 17, 2021
1 parent 0e3174e commit 1374bb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/memberdef.cpp
Expand Up @@ -5416,7 +5416,8 @@ bool MemberDefImpl::_hasVisibleCallerGraph() const
Config_getBool(HAVE_DOT);
if (enabled)
{
return DotCallGraph::isTrivial(this,TRUE);
bool trivial = DotCallGraph::isTrivial(this,TRUE);
return !trivial;
}
return FALSE;
}
Expand Down

0 comments on commit 1374bb2

Please sign in to comment.