File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,15 @@ class MRDOX_VISIBLE
101
101
*/
102
102
bool includePrivate = false ;
103
103
104
+ /* * `true` if anonymous namespace members should be extracted and displayed.
105
+
106
+ In some cases anonymous namespace members will
107
+ be listed even if this configuration value is set to
108
+ `false`. For example, this may occur for a class derived
109
+ from one declared within an anonymous namespace.
110
+ */
111
+ bool includeAnonymous = true ;
112
+
104
113
// --------------------------------------------
105
114
106
115
/* * A string holding the complete configuration YAML.
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ struct llvm::yaml::MappingTraits<
48
48
io.mapOptional (" single-page" , cfg.singlePage );
49
49
io.mapOptional (" verbose" , cfg.verboseOutput );
50
50
io.mapOptional (" with-private" , cfg.includePrivate );
51
+ io.mapOptional (" with-anonymous" , cfg.includeAnonymous );
51
52
52
53
io.mapOptional (" concurrency" , cfg.concurrency_ );
53
54
io.mapOptional (" defines" , cfg.additionalDefines_ );
You can’t perform that action at this time.
0 commit comments