Skip to content

Commit 1374bb2

Browse files
committed
issue #8476: Call graph regression: Some parts are mixed up
1 parent 0e3174e commit 1374bb2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/memberdef.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -5416,7 +5416,8 @@ bool MemberDefImpl::_hasVisibleCallerGraph() const
54165416
Config_getBool(HAVE_DOT);
54175417
if (enabled)
54185418
{
5419-
return DotCallGraph::isTrivial(this,TRUE);
5419+
bool trivial = DotCallGraph::isTrivial(this,TRUE);
5420+
return !trivial;
54205421
}
54215422
return FALSE;
54225423
}

0 commit comments

Comments
 (0)