From 0bbdca88b50fa4900c7ef2ed49adb3e0006fc363 Mon Sep 17 00:00:00 2001 From: Russ Butler Date: Thu, 1 Nov 2018 17:15:16 -0500 Subject: [PATCH] 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: 784fa91294fb4849ab761fe558af7c3cfa2a9174 "Update doxygens to be in sync" --- doxyfile_options | 2 +- doxygen_options.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/doxyfile_options b/doxyfile_options index b8c8b17065..173d4b69bc 100644 --- a/doxyfile_options +++ b/doxyfile_options @@ -484,7 +484,7 @@ HIDE_UNDOC_MEMBERS = YES # has no effect if EXTRACT_ALL is enabled. # The default value is: NO. -HIDE_UNDOC_CLASSES = YES +HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend # (class|struct|union) declarations. If set to NO, these declarations will be diff --git a/doxygen_options.json b/doxygen_options.json index 900f10160a..5cb33a4612 100644 --- a/doxygen_options.json +++ b/doxygen_options.json @@ -25,7 +25,6 @@ "GENERATE_TESTLIST": "NO", "GENERATE_TODOLIST": "NO", "HIDE_SCOPE_NAMES": "YES", - "HIDE_UNDOC_CLASSES": "YES", "HIDE_UNDOC_MEMBERS": "YES", "HIDE_FRIEND_COMPOUNDS": "YES", "INLINE_INFO": "NO",