5
5
concurrency: # <.>
6
6
defines: # <.>
7
7
ignore-failures: # <.>
8
- include-anonymous: # <.>
9
- include-private: # <.>
10
8
input:
11
9
include: # <.>
12
10
multipage: # <.>
13
11
source-root: # <.>
14
12
filters: # <.>
13
+ referenced-declarations: # <.>
14
+ anonymous-namespaces: # <.>
15
+ inaccessible-members: # <.>
16
+ inaccessible-bases: # <.>
15
17
----
16
18
<.> Optional `concurrency` key
17
19
<.> Optional `defines` key
18
20
<.> Optional `ignore-failures` key
19
- <.> Optional `include-anonymous` key
20
- <.> Optional `include-private` key
21
21
<.> Optional `include` key
22
22
<.> Optional `multipage` key
23
23
<.> Optional `source-root` key
24
24
<.> Optional `filters` key
25
+ <.> Optional `referenced-declarations` key
26
+ <.> Optional `anonymous-namespaces` key
27
+ <.> Optional `inaccessible-members` key
28
+ <.> Optional `inaccessible-bases` key
25
29
26
30
== Available configuration keys
27
31
@@ -42,14 +46,6 @@ the hardware-suggested concurrency.
42
46
|Whether to ignore failures during symbol extraction. `true` or `false`.
43
47
|No
44
48
45
- |include-anonymous
46
- |Whether to extract symbols from anonymous namespaces. `true` or `false`.
47
- |No
48
-
49
- |include-private
50
- |Whether to extract private members. `true` or `false`.
51
- |No
52
-
53
49
|include
54
50
|The amount of parallelism desired. 0 to use
55
51
the hardware-suggested concurrency.
@@ -68,4 +64,23 @@ input file hierarchy.
68
64
|Patterns specifying symbols which should be included/excluded.
69
65
See xref:filters[specifying filters] for details.
70
66
|No
67
+
68
+ |referenced-declarations
69
+ |When to extract external declarations referenced by symbols.
70
+ Unconditionally extracted when `always`, never extracted when `never`,
71
+ and only extracted when used as a base class/deduced local class return type
72
+ when set to `dependency`.
73
+ |No
74
+
75
+ |anonymous-namespaces
76
+ |Whether to extract anonymous namespaces. `always` or `never`.
77
+ |No
78
+
79
+ |inaccessible-members
80
+ |Whether to extract inaccessible members. Currently unimplemented.
81
+ |No
82
+
83
+ |inaccessible-bases
84
+ |Whether to extract inaccessible bases. Currently unimplemented.
85
+
71
86
|===
0 commit comments