Skip to content

Commit a2f4c41

Browse files
committed
polymorphic info members use value semantics
Wherever std::unique_ptr was used for polymorphic members of Info objects, the pointer addresses were being used in comparisons instead of the dereferenced values, which only returned true when both were nullptr. #fix
1 parent 6f9bd07 commit a2f4c41

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+2787
-1008
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
test-files/**/*.xml binary
2+
test-files/golden-tests/** text eol=lf

docs/mrdocs.schema.json

+54-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"anonymous-namespaces": {
1111
"default": true,
1212
"description": "Determine whether symbols in anonymous namespaces should be extracted. When set to `always`, symbols in anonymous namespaces are always extracted. When set to `dependency`, symbols in anonymous namespaces are extracted only if they are referenced by the source code. When set to `never`, symbols in anonymous namespaces are never extracted.",
13+
"enum": [
14+
true,
15+
false
16+
],
1317
"title": "Extraction policy for anonymous namespaces",
1418
"type": "boolean"
1519
},
@@ -43,6 +47,10 @@
4347
"embedded": {
4448
"default": false,
4549
"description": "Output an embeddable document, which excludes the header, the footer, and everything outside the body of the document. This option is useful for producing documents that can be inserted into an external template.",
50+
"enum": [
51+
true,
52+
false
53+
],
4654
"title": "Output an embeddable document",
4755
"type": "boolean"
4856
},
@@ -106,12 +114,20 @@
106114
"ignore-failures": {
107115
"default": false,
108116
"description": "When set to true, MrDocs continues to generate the documentation even if there are AST visitation failures. AST visitation failures occur when the source code contains constructs that are not supported by MrDocs.",
117+
"enum": [
118+
true,
119+
false
120+
],
109121
"title": "Whether AST visitation failures should not stop the program",
110122
"type": "boolean"
111123
},
112124
"ignore-map-errors": {
113125
"default": false,
114126
"description": "When set to true, MrDocs continues to generate the documentation even if some files are not mapped correctly. Files are not mapped correctly when the source file is not found or the compilation database does not contain the compiler flags for the source file.",
127+
"enum": [
128+
true,
129+
false
130+
],
115131
"title": "Continue if files are not mapped correctly",
116132
"type": "boolean"
117133
},
@@ -156,6 +172,10 @@
156172
"legible-names": {
157173
"default": true,
158174
"description": "Use legible names for ids in the documentation. When set to true, MrDocs uses legible names for symbols in the documentation. These are symbols that are legible but still safe for URLs. When the option is set to false, MrDocs uses a hash of the symbol ID.",
175+
"enum": [
176+
true,
177+
false
178+
],
159179
"title": "Use legible names",
160180
"type": "boolean"
161181
},
@@ -173,6 +193,10 @@
173193
"multipage": {
174194
"default": true,
175195
"description": "Generates a multipage documentation. The output directory must be a directory. This option acts as a hint to the generator to create a multipage documentation. Whether the hint is followed or not depends on the generator.",
196+
"enum": [
197+
true,
198+
false
199+
],
176200
"title": "Generate a multipage documentation",
177201
"type": "boolean"
178202
},
@@ -185,18 +209,30 @@
185209
"private-bases": {
186210
"default": true,
187211
"description": "Determine whether private base classes should be extracted",
212+
"enum": [
213+
true,
214+
false
215+
],
188216
"title": "Extraction policy for private base classes",
189217
"type": "boolean"
190218
},
191219
"private-members": {
192220
"default": false,
193221
"description": "Determine whether private class members should be extracted",
222+
"enum": [
223+
true,
224+
false
225+
],
194226
"title": "Extraction policy for private class members",
195227
"type": "boolean"
196228
},
197229
"recursive": {
198230
"default": true,
199231
"description": "Recursively include files. When set to true, MrDocs includes files in subdirectories of the input directories. When set to false, MrDocs includes only the files in the input directories.",
232+
"enum": [
233+
true,
234+
false
235+
],
200236
"title": "Recursively include files from \"input\" paths",
201237
"type": "boolean"
202238
},
@@ -210,16 +246,20 @@
210246
},
211247
"see-below": {
212248
"default": [],
213-
"description": "Symbols that match one of these filters are tagged as \"see-below\" in the documentation, and so do symbols in scopes tagged as \"see-below\". This option is used to remove details about symbols that are considered part of the private API of the project. In the documentation page for this symbol, the synopsis of the implementation is rendered as \"see-below\" and members of scopes (such as a namespace or record) are not listed. The rest of the documentation is rendered as usual. See the documentation for \"include-symbol\" for the pattern syntax.",
249+
"description": "Symbols that match one of these filters are tagged as \"see-below\" in the documentation, and so do symbols in scopes tagged as \"see-below\". This option is used to remove details about symbols that are considered part of the private API of the project but the user might need to interact with. In the documentation page for this symbol, the symbol is exposition only: the synopsis of the implementation is rendered as \"see-below\" and members of scopes (such as a namespace or record) are not listed. The rest of the documentation is rendered as usual to explain the symbol. See the documentation for \"include-symbol\" for the pattern syntax.",
214250
"items": {
215251
"type": "string"
216252
},
217-
"title": "Symbols rendered as \"see-below\"",
253+
"title": "Exposition only symbols rendered as \"see-below\".",
218254
"type": "array"
219255
},
220256
"sfinae": {
221257
"default": true,
222258
"description": "When set to true, MrDocs detects SFINAE expressions in the source code and extracts them as part of the documentation. Expressions such as `std::enable_if<...>` are detected, removed, and documented as a requirement. MrDocs uses an algorithm that extracts SFINAE infomation from types by identifying inspecting the primary template and specializations to detect the result type and the controlling expressions in a specialization.",
259+
"enum": [
260+
true,
261+
false
262+
],
223263
"title": "Detect and reduce SFINAE expressions",
224264
"type": "boolean"
225265
},
@@ -259,18 +299,30 @@
259299
"use-system-libc": {
260300
"default": false,
261301
"description": "To achieve reproducible results, MrDocs bundles the LibC headers with its definitions. To use the C standard library available in the system instead, set this option to true.",
302+
"enum": [
303+
true,
304+
false
305+
],
262306
"title": "Use the system C standard library",
263307
"type": "boolean"
264308
},
265309
"use-system-stdlib": {
266310
"default": false,
267311
"description": "To achieve reproducible results, MrDocs bundles the LibC++ headers. To use the C++ standard library available in the system instead, set this option to true.",
312+
"enum": [
313+
true,
314+
false
315+
],
268316
"title": "Use the system C++ standard library",
269317
"type": "boolean"
270318
},
271319
"verbose": {
272320
"default": false,
273321
"description": "Verbose output. When set to true, MrDocs outputs additional information during the generation of the documentation.",
322+
"enum": [
323+
true,
324+
false
325+
],
274326
"title": "Verbose output",
275327
"type": "boolean"
276328
}

include/mrdocs/ADT/Optional.hpp

+14-13
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
#include <concepts>
1717
#include <type_traits>
1818
#include <utility>
19+
#include <ranges>
1920

20-
namespace clang {
21-
namespace mrdocs {
21+
namespace clang::mrdocs {
2222

2323
/** The default empty predicate.
2424
@@ -27,21 +27,23 @@ namespace mrdocs {
2727
*/
2828
struct DefaultEmptyPredicate
2929
{
30-
template<class T>
31-
constexpr bool operator()(T const& t) const noexcept
32-
requires requires
33-
{
34-
{ t.empty() } -> std::convertible_to<bool>;
35-
}
30+
template <std::ranges::range T>
31+
constexpr
32+
bool
33+
operator()(T const& t) const noexcept
3634
{
37-
return t.empty();
35+
return std::ranges::empty(t);
3836
}
3937

4038
template<class T>
41-
constexpr bool operator()(T const& t) const noexcept
39+
constexpr
40+
bool
41+
operator()(T const& t) const noexcept
4242
{
43-
return ! t;
43+
return !t;
4444
}
45+
46+
4547
};
4648

4749
/** A compact optional.
@@ -138,7 +140,6 @@ class Optional
138140
}
139141
};
140142

141-
} // mrdocs
142-
} // clang
143+
} // clang::mrdocs
143144

144145
#endif

0 commit comments

Comments
 (0)