Skip to content

Commit 0bbdca8

Browse files
committed
Fix missing doxygen pages
Set the doxygen option HIDE_UNDOC_CLASSES to NO so even classes without top level documentation show up. This fixes missing class links in the documentation. This problem was introduced when the local doxygen settings were synchronized with the website doxygen settings: 784fa91 "Update doxygens to be in sync"
1 parent 430fb3e commit 0bbdca8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

doxyfile_options

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ HIDE_UNDOC_MEMBERS = YES
484484
# has no effect if EXTRACT_ALL is enabled.
485485
# The default value is: NO.
486486

487-
HIDE_UNDOC_CLASSES = YES
487+
HIDE_UNDOC_CLASSES = NO
488488

489489
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
490490
# (class|struct|union) declarations. If set to NO, these declarations will be

doxygen_options.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"GENERATE_TESTLIST": "NO",
2626
"GENERATE_TODOLIST": "NO",
2727
"HIDE_SCOPE_NAMES": "YES",
28-
"HIDE_UNDOC_CLASSES": "YES",
2928
"HIDE_UNDOC_MEMBERS": "YES",
3029
"HIDE_FRIEND_COMPOUNDS": "YES",
3130
"INLINE_INFO": "NO",

0 commit comments

Comments
 (0)