[Lldb-commits] [lldb] r369479 - [Doxygen] Document private class members.
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Aug 20 17:10:19 PDT 2019
Author: jdevlieghere
Date: Tue Aug 20 17:10:19 2019
New Revision: 369479
URL: http://llvm.org/viewvc/llvm-project?rev=369479&view=rev
Log:
[Doxygen] Document private class members.
Given that the C++ documentation is meant for LLDB developers it makes
sense to include private class members in the output.
Modified:
lldb/trunk/docs/doxygen.cfg.in
Modified: lldb/trunk/docs/doxygen.cfg.in
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/doxygen.cfg.in?rev=369479&r1=369478&r2=369479&view=diff
==============================================================================
--- lldb/trunk/docs/doxygen.cfg.in (original)
+++ lldb/trunk/docs/doxygen.cfg.in Tue Aug 20 17:10:19 2019
@@ -303,7 +303,7 @@ EXTRACT_ALL = YES
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
# will be included in the documentation.
-EXTRACT_PRIVATE = NO
+EXTRACT_PRIVATE = YES
# If the EXTRACT_STATIC tag is set to YES all static members of a file
# will be included in the documentation.
More information about the lldb-commits
mailing list