Skip to content

Commit ed9a0d5

Browse files
committed
issue doxygen#12233 Call and caller graphs not rendered when functions only have brief
1 parent 8f0b951 commit ed9a0d5

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/doxygen.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13090,10 +13090,6 @@ void parseInput()
1309013090
CitationManager::instance().generatePage();
1309113091
g_s.end();
1309213092

13093-
g_s.begin("Counting members...\n");
13094-
countMembers();
13095-
g_s.end();
13096-
1309713093
g_s.begin("Counting data structures...\n");
1309813094
Index::instance().countDataStructures();
1309913095
g_s.end();
@@ -13302,6 +13298,12 @@ void generateOutput()
1330213298
generateFileSources();
1330313299
g_s.end();
1330413300

13301+
g_s.begin("Counting members...\n");
13302+
// needs to be done after generating the sources
13303+
// but before generating the compound documentation, see bug #12233
13304+
countMembers();
13305+
g_s.end();
13306+
1330513307
g_s.begin("Generating file documentation...\n");
1330613308
generateFileDocs();
1330713309
g_s.end();

0 commit comments

Comments
 (0)