diff --git a/docs/modules/ROOT/pages/generators.adoc b/docs/modules/ROOT/pages/generators.adoc index 355c750fff..1198edc9f2 100644 --- a/docs/modules/ROOT/pages/generators.adoc +++ b/docs/modules/ROOT/pages/generators.adoc @@ -107,7 +107,7 @@ The multipage generator renders the layout multiple times as separate pages for The single-page generator renders the layout multiple times and concatenates the results in a single page. Each time the generator encounters a symbol, it renders the layout template with the symbol data as the Handlebars context. -The layout template can include other partial templates to render the symbol data.These partials are available in the `/generator//partials` directory. +The layout template can include other partial templates to render the symbol data. These partials are available in the `/generator//partials` directory. The Document Object Model (DOM) for each symbol includes all information about the symbol.One advantage of custom templates over post-processing XML files is the ability to access symbols as a graph.If symbol `A` refers to symbol `B`, some properties of symbol `B` are likely to be required in the documentation of `A`.All templates and generators can access a reference to `B` by searching the symbol tree or simply by accessing the elements `A` refers to.All references to other symbols are resolved in the templates. diff --git a/include/mrdocs/Support/Handlebars.hpp b/include/mrdocs/Support/Handlebars.hpp index 2acd37c867..04bda644a3 100644 --- a/include/mrdocs/Support/Handlebars.hpp +++ b/include/mrdocs/Support/Handlebars.hpp @@ -1164,6 +1164,17 @@ MRDOCS_DECL void registerLogicalHelpers(Handlebars& hbs); +/** Register math helpers into a Handlebars instance + + This function registers a number of common helpers that perform + mathemathical operations. + + @param hbs The Handlebars instance to register the helpers into + */ +MRDOCS_DECL +void +registerMathHelpers(Handlebars& hbs); + /** Register string helpers into a Handlebars instance This function registers a number of common helpers that operate on diff --git a/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs b/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs index 2f509771f9..6134b881e0 100644 --- a/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs +++ b/share/mrdocs/addons/generator/adoc/partials/markup/h.adoc.hbs @@ -1 +1,3 @@ +{{#if id}}[#{{{id}}}] +{{/if}} ={{select level (repeat "=" level) (select @root.config.multipage "==" "=")}} {{> @partial-block }} \ No newline at end of file diff --git a/share/mrdocs/addons/generator/adoc/partials/symbol.adoc.hbs b/share/mrdocs/addons/generator/adoc/partials/symbol.adoc.hbs index 1d3e475159..7678217266 100644 --- a/share/mrdocs/addons/generator/adoc/partials/symbol.adoc.hbs +++ b/share/mrdocs/addons/generator/adoc/partials/symbol.adoc.hbs @@ -1,8 +1,20 @@ +{{!-- + Renders the documentation for a symbol in a format that is coherent for all symbol kinds. + + This partial conditionally checks if each documentation section exists and if a symbol kind + does not provide a specific kind of documentation section, that section is not rendered. + + Expected Context: {Root Context Object} + + Example: + {{> symbol }} + + See: https://mrdocs.com/docs/mrdocs/develop/generators.html#dom_reference +--}} {{#unless @root.config.multipage }} {{! Single page documentation: symbol is not available to the wrapper but it's available here }} {{! Include the symbol title at a higher level }} -[#{{{symbol.anchor}}}] -== {{> symbol/qualified-name symbol }} +{{#> markup/h level=1 id=symbol.anchor }}{{> symbol/qualified-name symbol }}{{/markup/h}} {{/unless}} {{! Brief }} @@ -12,7 +24,7 @@ {{/if}} {{! Synopsis }} {{#unless (contains (arr "namespace") symbol.kind)}} -=={{#unless @root.config.multipage}}={{/unless}} Synopsis +{{#> markup/dynamic-level-h }}Synopsis{{/markup/dynamic-level-h}} {{>location/source dcl=(primary_location symbol)}} @@ -52,7 +64,7 @@ {{else if symbol.members}} {{! Members }} {{#if (and symbol.members (ne symbol.kind "overloads"))}} -=={{#unless @root.config.multipage}}={{/unless}} Members +{{#> markup/dynamic-level-h }}Members{{/markup/dynamic-level-h}} [,cols=2] |=== @@ -71,14 +83,14 @@ {{/if}} {{! Description }} {{#if symbol.doc.description}} -=={{#unless @root.config.multipage}}={{/unless}} Description +{{#> markup/dynamic-level-h }}Description{{/markup/dynamic-level-h}} {{symbol.doc.description}} {{/if}} {{! Using symbols }} {{#if symbol.shadows}} -=={{#unless @root.config.multipage}}={{/unless}} Introduced Symbols +{{#> markup/dynamic-level-h }}Introduced Symbols{{/markup/dynamic-level-h}} |=== | Name @@ -91,7 +103,7 @@ {{! Exceptions }} {{#if (ne symbol.kind "overloads")}} {{#if symbol.doc.exceptions}} -=={{#unless @root.config.multipage}}={{/unless}} Exceptions +{{#> markup/dynamic-level-h }}Exceptions{{/markup/dynamic-level-h}} |=== | Name | Thrown on @@ -106,7 +118,7 @@ {{else}} {{#with (flattenUnique symbol.members "doc.exceptions" "exception") as |allExceptions|}} {{#if (ne (len allExceptions) 0)}} -=={{#unless @root.config.multipage}}={{/unless}} Exceptions +{{#> markup/dynamic-level-h }}Exceptions{{/markup/dynamic-level-h}} |=== | Name | Thrown on @@ -122,7 +134,7 @@ {{/if}} {{! Return value }} {{#if symbol.doc.returns}} -=={{#unless @root.config.multipage}}={{/unless}} Return Value +{{#> markup/dynamic-level-h }}Return Value{{/markup/dynamic-level-h}} {{{symbol.doc.returns}}} @@ -130,7 +142,7 @@ {{! Template Parameters }} {{#if (ne symbol.kind "overloads")}} {{#if symbol.doc.tparams}} -=={{#unless @root.config.multipage}}={{/unless}} Template Parameters +{{#> markup/dynamic-level-h }}Template Parameters{{/markup/dynamic-level-h}} |=== | Name | Description @@ -145,7 +157,7 @@ {{else}} {{#with (flattenUnique symbol.members "doc.tparams" "name") as |allTParams|}} {{#if (ne (len allTParams) 0)}} -=={{#unless @root.config.multipage}}={{/unless}} Parameters +{{#> markup/dynamic-level-h }}Parameters{{/markup/dynamic-level-h}} |=== | Name | Description @@ -162,7 +174,7 @@ {{! Parameters }} {{#if (ne symbol.kind "overloads")}} {{#if symbol.doc.params}} -=={{#unless @root.config.multipage}}={{/unless}} Parameters +{{#> markup/dynamic-level-h }}Parameters{{/markup/dynamic-level-h}} |=== | Name | Description @@ -177,7 +189,7 @@ {{else}} {{#with (flattenUnique symbol.members "doc.params" "name") as |allParams|}} {{#if (ne (len allParams) 0)}} -=={{#unless @root.config.multipage}}={{/unless}} Parameters +{{#> markup/dynamic-level-h }}Parameters{{/markup/dynamic-level-h}} |=== | Name | Description @@ -193,7 +205,7 @@ {{/if}} {{! Preconditions }} {{#if symbol.doc.preconditions}} -=={{#unless @root.config.multipage}}={{/unless}} Preconditions +{{#> markup/dynamic-level-h }}Preconditions{{/markup/dynamic-level-h}} {{#each symbol.doc.preconditions}} {{{.}}} @@ -202,7 +214,7 @@ {{/if}} {{! Postconditions }} {{#if symbol.doc.postconditions}} -=={{#unless @root.config.multipage}}={{/unless}} Postconditions +{{#> markup/dynamic-level-h }}Postconditions{{/markup/dynamic-level-h}} {{#each symbol.doc.postconditions}} {{{.}}} @@ -211,7 +223,7 @@ {{/if}} {{! See Also }} {{#if symbol.doc.see}} -=={{#unless @root.config.multipage}}={{/unless}} See Also +{{#> markup/dynamic-level-h }}See Also{{/markup/dynamic-level-h}} {{#each symbol.doc.see}} {{{.}}} diff --git a/share/mrdocs/addons/generator/common/partials/markup/dynamic-level-h.hbs b/share/mrdocs/addons/generator/common/partials/markup/dynamic-level-h.hbs new file mode 100644 index 0000000000..ce78bcd780 --- /dev/null +++ b/share/mrdocs/addons/generator/common/partials/markup/dynamic-level-h.hbs @@ -0,0 +1,6 @@ +{{#> markup/h + level=(select @root.config.multipage (or level 1) (add (or level 1) 1)) + id=id +}} +{{> @partial-block }} +{{/markup/h}} diff --git a/share/mrdocs/addons/generator/html/partials/markup/h.html.hbs b/share/mrdocs/addons/generator/html/partials/markup/h.html.hbs index 663e013cb4..41f84c9710 100644 --- a/share/mrdocs/addons/generator/html/partials/markup/h.html.hbs +++ b/share/mrdocs/addons/generator/html/partials/markup/h.html.hbs @@ -1 +1 @@ -{{> @partial-block }} \ No newline at end of file +{{> @partial-block }} \ No newline at end of file diff --git a/share/mrdocs/addons/generator/html/partials/symbol.html.hbs b/share/mrdocs/addons/generator/html/partials/symbol.html.hbs index 1495699eda..928c4d1ab5 100644 --- a/share/mrdocs/addons/generator/html/partials/symbol.html.hbs +++ b/share/mrdocs/addons/generator/html/partials/symbol.html.hbs @@ -1,9 +1,22 @@ +{{!-- + Renders the documentation for a symbol in a format that is coherent for all symbol kinds. + + This partial conditionally checks if each documentation section exists and if a symbol kind + does not provide a specific kind of documentation section, that section is not rendered. + + Expected Context: {Root Context Object} + + Example: + {{> symbol }} + + See: https://mrdocs.com/docs/mrdocs/develop/generators.html#dom_reference +--}} {{#unless @root.config.multipage }} {{! Single page documentation: symbol is not available to the wrapper but it's available here }} {{! Include the symbol title at a higher level }} -
-

{{> symbol/qualified-name symbol }}

+
+{{#> markup/h level=2 id=symbol.anchor }}{{> symbol/qualified-name symbol }}{{/markup/h}} {{/unless}} {{! Brief }} {{#if symbol.doc.brief}} @@ -18,7 +31,7 @@ {{! Synopsis }} {{#unless (contains (arr "namespace") symbol.kind)}}
-

Synopsis

+{{#> markup/dynamic-level-h level=2 }}Synopsis{{/markup/dynamic-level-h}}
{{>location/source dcl=(primary_location symbol)}}
@@ -59,7 +72,7 @@ {{! Members }} {{#if (and symbol.members (ne symbol.kind "overloads"))}}
-

Members

+{{#> markup/dynamic-level-h level=2 }}Members{{/markup/dynamic-level-h}} @@ -90,7 +103,7 @@ {{! Description }} {{#if symbol.doc.description}}
-

Description

+{{#> markup/dynamic-level-h level=2 }}Description{{/markup/dynamic-level-h}} {{{symbol.doc.description}}}
@@ -98,7 +111,7 @@ {{! Using symbols }} {{#if symbol.shadows}}
-

Introduced Symbols

+{{#> markup/dynamic-level-h level=2 }}Introduced Symbols{{/markup/dynamic-level-h}}
@@ -120,7 +133,7 @@ {{#if (ne symbol.kind "overloads")}} {{#if symbol.doc.exceptions}}
-

Exceptions

+{{#> markup/dynamic-level-h level=2 }}Exceptions{{/markup/dynamic-level-h}}
@@ -143,7 +156,7 @@ {{#with (flattenUnique symbol.members "doc.exceptions" "exception") as |allExceptions|}} {{#if (ne (len allExceptions) 0)}}
-

Exceptions

+{{#> markup/dynamic-level-h level=2 }}Exceptions{{/markup/dynamic-level-h}}
@@ -167,7 +180,7 @@ {{! Return value }} {{#if symbol.doc.returns}}
-

Return Value

+{{#> markup/dynamic-level-h level=2 }}Return Value{{/markup/dynamic-level-h}} {{{symbol.doc.returns}}}
{{/if}} @@ -175,7 +188,7 @@ {{#if (ne symbol.kind "overloads")}} {{#if symbol.doc.tparams}}
-

Template Parameters

+{{#> markup/dynamic-level-h level=2 }}Template Parameters{{/markup/dynamic-level-h}}
@@ -198,7 +211,7 @@ {{#with (flattenUnique symbol.members "doc.tparams" "name") as |allTParams|}} {{#if (ne (len allTParams) 0)}}
-

Template Parameters

+{{#> markup/dynamic-level-h level=2 }}Template Parameters{{/markup/dynamic-level-h}}
@@ -223,7 +236,7 @@ {{#if (ne symbol.kind "overloads")}} {{#if symbol.doc.params}}
-

Parameters

+{{#> markup/dynamic-level-h level=2 }}Parameters{{/markup/dynamic-level-h}}
@@ -246,7 +259,7 @@ {{#with (flattenUnique symbol.members "doc.params" "name") as |allParams|}} {{#if (ne (len allParams) 0)}}
-

Parameters

+{{#> markup/dynamic-level-h level=2 }}Parameters{{/markup/dynamic-level-h}}
@@ -270,7 +283,7 @@ {{! Preconditions }} {{#if symbol.doc.preconditions}}
-

Preconditions

+{{#> markup/dynamic-level-h level=2 }}Preconditions{{/markup/dynamic-level-h}} {{#each symbol.doc.preconditions}}

{{.}}

{{/each}} @@ -279,7 +292,7 @@ {{! Postconditions }} {{#if symbol.doc.postconditions}}
-

Postconditions

+{{#> markup/dynamic-level-h level=2 }}Postconditions{{/markup/dynamic-level-h}} {{#each symbol.doc.postconditions}}

{{.}}

{{/each}} @@ -288,7 +301,7 @@ {{! See Also }} {{#if symbol.doc.see}}
-

See Also

+{{#> markup/dynamic-level-h level=2 }}See Also{{/markup/dynamic-level-h}} {{#each symbol.doc.see}}

{{.}}

{{/each}} diff --git a/src/lib/Gen/hbs/Builder.cpp b/src/lib/Gen/hbs/Builder.cpp index d3d50abdf4..37a2199547 100644 --- a/src/lib/Gen/hbs/Builder.cpp +++ b/src/lib/Gen/hbs/Builder.cpp @@ -233,6 +233,7 @@ Builder( helpers::registerStringHelpers(hbs_); helpers::registerAntoraHelpers(hbs_); helpers::registerLogicalHelpers(hbs_); + helpers::registerMathHelpers(hbs_); helpers::registerContainerHelpers(hbs_); hbs_.registerHelper("relativize", dom::makeInvocable(relativize_fn)); diff --git a/src/lib/Support/Handlebars.cpp b/src/lib/Support/Handlebars.cpp index 97a697c92b..57df69f61d 100644 --- a/src/lib/Support/Handlebars.cpp +++ b/src/lib/Support/Handlebars.cpp @@ -6689,6 +6689,103 @@ registerContainerHelpers(Handlebars& hbs) hbs.registerHelper("flattenUnique", flattenUnique_fn); } +void +registerMathHelpers(Handlebars& hbs) +{ + hbs.registerHelper("add", dom::makeVariadicInvocable([]( + dom::Array const& arguments) -> Expected + { + if (arguments.size() < 2) + { + return Unexpected(Error("add requires at least two arguments")); + } + if (!arguments.at(0).isInteger()) + { + return Unexpected(Error("add requires integer arguments")); + } + std::int64_t res = arguments.at(0).getInteger(); + for (std::size_t i = 1; i < arguments.size() - 1; ++i) + { + if (!arguments.at(i).isInteger()) + { + return Unexpected(Error("add requires integer arguments")); + } + res += arguments.at(i).getInteger(); + } + return res; + })); + + hbs.registerHelper("sub", dom::makeVariadicInvocable([]( + dom::Array const& arguments) -> Expected + { + if (arguments.size() < 2) + { + return Unexpected(Error("sub requires at least two arguments")); + } + if (!arguments.at(0).isInteger()) + { + return Unexpected(Error("sub requires integer arguments")); + } + std::int64_t res = arguments.at(0).getInteger(); + for (std::size_t i = 1; i < arguments.size() - 1; ++i) + { + if (!arguments.at(i).isInteger()) + { + return Unexpected(Error("sub requires integer arguments")); + } + res -= arguments.at(i).getInteger(); + } + return res; + })); + + hbs.registerHelper("mul", dom::makeVariadicInvocable([]( + dom::Array const& arguments) -> Expected + { + if (arguments.size() < 2) + { + return Unexpected(Error("mul requires at least two arguments")); + } + if (!arguments.at(0).isInteger()) + { + return Unexpected(Error("mul requires integer arguments")); + } + std::int64_t res = arguments.at(0).getInteger(); + for (std::size_t i = 1; i < arguments.size() - 1; ++i) + { + if (!arguments.at(i).isInteger()) + { + return Unexpected(Error("mul requires integer arguments")); + } + res *= arguments.at(i).getInteger(); + } + return res; + })); + + hbs.registerHelper("div", dom::makeVariadicInvocable([]( + dom::Array const& arguments) -> Expected + { + if (arguments.size() < 2) + { + return Unexpected(Error("div requires at least two arguments")); + } + if (!arguments.at(0).isInteger()) + { + return Unexpected(Error("div requires integer arguments")); + } + std::int64_t res = arguments.at(0).getInteger(); + for (std::size_t i = 1; i < arguments.size() - 1; ++i) + { + if (!arguments.at(i).isInteger()) + { + return Unexpected(Error("div requires integer arguments")); + } + res /= arguments.at(i).getInteger(); + } + return res; + })); +} + + } // helpers void diff --git a/test-files/golden-tests/alias-template.html b/test-files/golden-tests/alias-template.html index f903b388da..b63dd158cc 100644 --- a/test-files/golden-tests/alias-template.html +++ b/test-files/golden-tests/alias-template.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -29,9 +29,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -47,9 +47,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

@@ -67,9 +67,9 @@

Synopsis

-
-

C

+
+

C

Synopsis

@@ -83,9 +83,9 @@

Synopsis

-
-

D

+
+

D

Synopsis

@@ -114,9 +114,9 @@

Types

-
-

D::E

+
+

D::E

Synopsis

diff --git a/test-files/golden-tests/attributes_1.html b/test-files/golden-tests/attributes_1.html index 8d173e92d5..1c2276f171 100644 --- a/test-files/golden-tests/attributes_1.html +++ b/test-files/golden-tests/attributes_1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -23,9 +23,9 @@

Functions

-
-

f

+
+

f

Synopsis

diff --git a/test-files/golden-tests/brief-1.html b/test-files/golden-tests/brief-1.html index 12351bbd2e..3b85f9c108 100644 --- a/test-files/golden-tests/brief-1.html +++ b/test-files/golden-tests/brief-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -29,9 +29,9 @@

Functions

-
-

f5

+
+

f5

brief bold it continues to the line.

@@ -51,9 +51,9 @@

Synopsis

-
-

f6

+
+

f6

brief

diff --git a/test-files/golden-tests/brief-2.html b/test-files/golden-tests/brief-2.html index e3880e31a6..2a10f9b6f8 100644 --- a/test-files/golden-tests/brief-2.html +++ b/test-files/golden-tests/brief-2.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -45,9 +45,9 @@

Functions

-
-

f1

+
+

f1

brief

@@ -67,9 +67,9 @@

Synopsis

-
-

f2

+
+

f2

brief

@@ -89,9 +89,9 @@

Synopsis

-
-

f3

+
+

f3

brief

@@ -111,9 +111,9 @@

Synopsis

-
-

f4

+
+

f4

brief x

@@ -140,9 +140,9 @@

Description

-
-

f5

+
+

f5

br ief

@@ -162,9 +162,9 @@

Synopsis

-
-

f6

+
+

f6

br ief

diff --git a/test-files/golden-tests/canonical_1.html b/test-files/golden-tests/canonical_1.html index 97762f8002..52400374d0 100644 --- a/test-files/golden-tests/canonical_1.html +++ b/test-files/golden-tests/canonical_1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -37,9 +37,9 @@

Types

-
-

B

+
+

B

Synopsis

@@ -54,9 +54,9 @@

Synopsis

-
-

b

+
+

b

Synopsis

@@ -71,9 +71,9 @@

Synopsis

-
-

A

+
+

A

Synopsis

@@ -88,9 +88,9 @@

Synopsis

-
-

a

+
+

a

Synopsis

@@ -105,9 +105,9 @@

Synopsis

-
-

Ba

+
+

Ba

Synopsis

@@ -122,9 +122,9 @@

Synopsis

-
-

bA

+
+

bA

Synopsis

@@ -139,9 +139,9 @@

Synopsis

-
-

Bx

+
+

Bx

Synopsis

@@ -156,9 +156,9 @@

Synopsis

-
-

ba

+
+

ba

Synopsis

diff --git a/test-files/golden-tests/class-template-partial-spec.html b/test-files/golden-tests/class-template-partial-spec.html index 2300910b90..03c202cb73 100644 --- a/test-files/golden-tests/class-template-partial-spec.html +++ b/test-files/golden-tests/class-template-partial-spec.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -58,9 +58,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -78,9 +78,9 @@

Synopsis

-
-

A::B<U*, T>

+
+

A::B<U*, T>

Synopsis

@@ -96,9 +96,9 @@

Synopsis

-
-

A::B<T, long>

+
+

A::B<T, long>

Synopsis

diff --git a/test-files/golden-tests/class-template-spec.html b/test-files/golden-tests/class-template-spec.html index d51e1acdcc..a1e6edd659 100644 --- a/test-files/golden-tests/class-template-spec.html +++ b/test-files/golden-tests/class-template-spec.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -39,9 +39,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -70,9 +70,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

@@ -86,9 +86,9 @@

Synopsis

-
-

A<int>

+
+

A<int>

Synopsis

@@ -117,9 +117,9 @@

Member Functions

-
-

A<int>::g

+
+

A<int>::g

Synopsis

@@ -133,9 +133,9 @@

Synopsis

-
-

A<long>

+
+

A<long>

Synopsis

@@ -164,9 +164,9 @@

Member Functions

-
-

A<long>::h

+
+

A<long>::h

Synopsis

@@ -180,9 +180,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

@@ -211,9 +211,9 @@

Member Functions

-
-

B::f

+
+

B::f

Synopsis

@@ -227,9 +227,9 @@

Synopsis

-
-

B<T*>

+
+

B<T*>

Synopsis

@@ -258,9 +258,9 @@

Member Functions

-
-

B<T*>::g

+
+

B<T*>::g

Synopsis

@@ -274,9 +274,9 @@

Synopsis

-
-

B<T&>

+
+

B<T&>

Synopsis

@@ -305,9 +305,9 @@

Member Functions

-
-

B<T&>::h

+
+

B<T&>::h

Synopsis

@@ -321,9 +321,9 @@

Synopsis

-
-

C

+
+

C

Synopsis

@@ -354,9 +354,9 @@

Member Functions

-
-

C::f

+
+

C::f

Synopsis

@@ -370,9 +370,9 @@

Synopsis

-
-

C<int, int>

+
+

C<int, int>

Synopsis

@@ -401,9 +401,9 @@

Member Functions

-
-

C<int, int>::g

+
+

C<int, int>::g

Synopsis

@@ -417,9 +417,9 @@

Synopsis

-
-

C<T*, int>

+
+

C<T*, int>

Synopsis

@@ -448,9 +448,9 @@

Member Functions

-
-

C<T*, int>::h

+
+

C<T*, int>::h

Synopsis

diff --git a/test-files/golden-tests/class-template-specializations-1.html b/test-files/golden-tests/class-template-specializations-1.html index 0ac6efc1ed..925c1c7eac 100644 --- a/test-files/golden-tests/class-template-specializations-1.html +++ b/test-files/golden-tests/class-template-specializations-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -127,9 +127,9 @@

Types

-
-

S0

+
+

S0

Synopsis

@@ -175,9 +175,9 @@

Member Functions

-
-

S0::f0

+
+

S0::f0

Synopsis

@@ -191,9 +191,9 @@

Synopsis

-
-

S0::S1

+
+

S0::S1

Synopsis

@@ -234,9 +234,9 @@

Member Functions

-
-

S0::S1::f1

+
+

S0::S1::f1

Synopsis

@@ -250,9 +250,9 @@

Synopsis

-
-

S0::S1::S2

+
+

S0::S1::S2

Synopsis

@@ -298,9 +298,9 @@

Member Functions

-
-

S0::S1::S2::f2

+
+

S0::S1::S2::f2

Synopsis

@@ -314,9 +314,9 @@

Synopsis

-
-

S0::S1::S2::S3

+
+

S0::S1::S2::S3

Synopsis

@@ -344,9 +344,9 @@

Member Functions

-
-

S0::S1::S2::S3::f3

+
+

S0::S1::S2::S3::f3

Synopsis

@@ -360,9 +360,9 @@

Synopsis

-
-

S0::S1::S2::S4

+
+

S0::S1::S2::S4

Synopsis

@@ -393,9 +393,9 @@

Member Functions

-
-

S0::S1::S2::S4::f4

+
+

S0::S1::S2::S4::f4

Synopsis

@@ -409,9 +409,9 @@

Synopsis

-
-

S0::S5

+
+

S0::S5

Synopsis

@@ -455,9 +455,9 @@

Member Functions

-
-

S0::S5::f5

+
+

S0::S5::f5

Synopsis

@@ -471,9 +471,9 @@

Synopsis

-
-

S0::S5::S6

+
+

S0::S5::S6

Synopsis

@@ -514,9 +514,9 @@

Member Functions

-
-

S0::S5::S6::f6

+
+

S0::S5::S6::f6

Synopsis

@@ -530,9 +530,9 @@

Synopsis

-
-

S0::S5::S6::S7

+
+

S0::S5::S6::S7

Synopsis

@@ -578,9 +578,9 @@

Member Functions

-
-

S0::S5::S6::S7::f7

+
+

S0::S5::S6::S7::f7

Synopsis

@@ -594,9 +594,9 @@

Synopsis

-
-

S0::S5::S6::S7::S8

+
+

S0::S5::S6::S7::S8

Synopsis

@@ -624,9 +624,9 @@

Member Functions

-
-

S0::S5::S6::S7::S8::f8

+
+

S0::S5::S6::S7::S8::f8

Synopsis

@@ -640,9 +640,9 @@

Synopsis

-
-

S0::S5::S6::S7::S9

+
+

S0::S5::S6::S7::S9

Synopsis

@@ -673,9 +673,9 @@

Member Functions

-
-

S0::S5::S6::S7::S9::f9

+
+

S0::S5::S6::S7::S9::f9

Synopsis

@@ -689,9 +689,9 @@

Synopsis

-
-

S0<0>

+
+

S0<0>

Synopsis

@@ -707,9 +707,9 @@

Synopsis

-
-

S0<1, T*>

+
+

S0<1, T*>

Synopsis

@@ -725,9 +725,9 @@

Synopsis

-
-

S0<1, int*>

+
+

S0<1, int*>

Synopsis

@@ -743,9 +743,9 @@

Synopsis

-
-

R0

+
+

R0

Synopsis

@@ -789,9 +789,9 @@

Member Functions

-
-

R1

+
+

R1

Synopsis

@@ -807,9 +807,9 @@

Synopsis

-
-

R2

+
+

R2

Synopsis

@@ -825,9 +825,9 @@

Synopsis

-
-

R3

+
+

R3

Synopsis

@@ -843,9 +843,9 @@

Synopsis

-
-

R4

+
+

R4

Synopsis

@@ -861,9 +861,9 @@

Synopsis

-
-

R5

+
+

R5

Synopsis

@@ -879,9 +879,9 @@

Synopsis

-
-

R6

+
+

R6

Synopsis

@@ -897,9 +897,9 @@

Synopsis

-
-

R7

+
+

R7

Synopsis

@@ -915,9 +915,9 @@

Synopsis

-
-

R8

+
+

R8

Synopsis

@@ -933,9 +933,9 @@

Synopsis

-
-

R9

+
+

R9

Synopsis

@@ -951,9 +951,9 @@

Synopsis

-
-

R10

+
+

R10

Synopsis

@@ -969,9 +969,9 @@

Synopsis

-
-

R11

+
+

R11

Synopsis

@@ -987,9 +987,9 @@

Synopsis

-
-

R12

+
+

R12

Synopsis

@@ -1005,9 +1005,9 @@

Synopsis

-
-

R13

+
+

R13

Synopsis

@@ -1023,9 +1023,9 @@

Synopsis

-
-

R14

+
+

R14

Synopsis

@@ -1041,9 +1041,9 @@

Synopsis

-
-

R15

+
+

R15

Synopsis

@@ -1059,9 +1059,9 @@

Synopsis

-
-

R16

+
+

R16

Synopsis

@@ -1077,9 +1077,9 @@

Synopsis

-
-

R17

+
+

R17

Synopsis

@@ -1095,9 +1095,9 @@

Synopsis

-
-

R18

+
+

R18

Synopsis

@@ -1113,9 +1113,9 @@

Synopsis

-
-

R19

+
+

R19

Synopsis

@@ -1131,9 +1131,9 @@

Synopsis

-
-

R20

+
+

R20

Synopsis

@@ -1149,9 +1149,9 @@

Synopsis

-
-

R21

+
+

R21

Synopsis

@@ -1167,9 +1167,9 @@

Synopsis

-
-

R22

+
+

R22

Synopsis

@@ -1185,9 +1185,9 @@

Synopsis

-
-

R23

+
+

R23

Synopsis

@@ -1203,9 +1203,9 @@

Synopsis

-
-

R24

+
+

R24

Synopsis

@@ -1221,9 +1221,9 @@

Synopsis

-
-

R25

+
+

R25

Synopsis

@@ -1239,9 +1239,9 @@

Synopsis

-
-

R26

+
+

R26

Synopsis

@@ -1257,9 +1257,9 @@

Synopsis

-
-

R27

+
+

R27

Synopsis

@@ -1275,9 +1275,9 @@

Synopsis

-
-

R28

+
+

R28

Synopsis

@@ -1321,9 +1321,9 @@

Member Functions

-
-

R29

+
+

R29

Synopsis

@@ -1367,9 +1367,9 @@

Member Functions

-
-

R30

+
+

R30

Synopsis

@@ -1411,9 +1411,9 @@

Member Functions

-
-

R31

+
+

R31

Synopsis

@@ -1460,9 +1460,9 @@

Member Functions

-
-

R32

+
+

R32

Synopsis

@@ -1506,9 +1506,9 @@

Member Functions

-
-

R33

+
+

R33

Synopsis

@@ -1552,9 +1552,9 @@

Member Functions

-
-

R34

+
+

R34

Synopsis

@@ -1583,9 +1583,9 @@

Member Functions

-
-

R35

+
+

R35

Synopsis

@@ -1617,9 +1617,9 @@

Member Functions

-
-

R36

+
+

R36

Synopsis

@@ -1648,9 +1648,9 @@

Member Functions

-
-

R37

+
+

R37

Synopsis

@@ -1679,9 +1679,9 @@

Member Functions

-
-

R38

+
+

R38

Synopsis

@@ -1726,9 +1726,9 @@

Member Functions

-
-

R39

+
+

R39

Synopsis

@@ -1770,9 +1770,9 @@

Member Functions

-
-

R40

+
+

R40

Synopsis

@@ -1814,9 +1814,9 @@

Member Functions

-
-

R41

+
+

R41

Synopsis

@@ -1858,9 +1858,9 @@

Member Functions

-
-

R42

+
+

R42

Synopsis

@@ -1907,9 +1907,9 @@

Member Functions

-
-

R43

+
+

R43

Synopsis

@@ -1953,9 +1953,9 @@

Member Functions

-
-

R44

+
+

R44

Synopsis

@@ -1999,9 +1999,9 @@

Member Functions

-
-

R45

+
+

R45

Synopsis

@@ -2030,9 +2030,9 @@

Member Functions

-
-

R46

+
+

R46

Synopsis

@@ -2064,9 +2064,9 @@

Member Functions

-
-

R47

+
+

R47

Synopsis

@@ -2095,9 +2095,9 @@

Member Functions

-
-

R48

+
+

R48

Synopsis

diff --git a/test-files/golden-tests/class-template-specializations-2.html b/test-files/golden-tests/class-template-specializations-2.html index 612fafc630..16fddbd747 100644 --- a/test-files/golden-tests/class-template-specializations-2.html +++ b/test-files/golden-tests/class-template-specializations-2.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -27,9 +27,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -45,9 +45,9 @@

Synopsis

-
-

A<T*>

+
+

A<T*>

Synopsis

@@ -80,9 +80,9 @@

Types

-
-

A<T*>::B

+
+

A<T*>::B

Synopsis

@@ -98,9 +98,9 @@

Synopsis

-
-

A<T*>::B<U*>

+
+

A<T*>::B<U*>

Synopsis

@@ -129,9 +129,9 @@

Types

-
-

A<T*>::B<U*>::C

+
+

A<T*>::B<U*>::C

Synopsis

@@ -146,9 +146,9 @@

Synopsis

-
-

A<T*>::B<int>

+
+

A<T*>::B<int>

Synopsis

@@ -164,9 +164,9 @@

Synopsis

-
-

A<double>

+
+

A<double>

Synopsis

@@ -197,9 +197,9 @@

Types

-
-

A<double>::D

+
+

A<double>::D

Synopsis

@@ -230,9 +230,9 @@

Types

-
-

A<double>::D::E

+
+

A<double>::D::E

Synopsis

@@ -248,9 +248,9 @@

Synopsis

-
-

A<double>::D::E<T*>

+
+

A<double>::D::E<T*>

Synopsis

@@ -279,9 +279,9 @@

Types

-
-

A<double>::D::E<T*>::F

+
+

A<double>::D::E<T*>::F

Synopsis

@@ -296,9 +296,9 @@

Synopsis

-
-

A<double>::D<float>

+
+

A<double>::D<float>

Synopsis

@@ -329,9 +329,9 @@

Types

-
-

A<double>::D<float>::G

+
+

A<double>::D<float>::G

Synopsis

@@ -347,9 +347,9 @@

Synopsis

-
-

A<double>::D<float>::G<T*>

+
+

A<double>::D<float>::G<T*>

Synopsis

diff --git a/test-files/golden-tests/class-template-specializations-3.html b/test-files/golden-tests/class-template-specializations-3.html index 25b4ca4ae7..217bdf3441 100644 --- a/test-files/golden-tests/class-template-specializations-3.html +++ b/test-files/golden-tests/class-template-specializations-3.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -25,9 +25,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -58,9 +58,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -93,9 +93,9 @@

Types

-
-

A::B::C

+
+

A::B::C

Synopsis

@@ -110,9 +110,9 @@

Synopsis

-
-

A::B::D

+
+

A::B::D

Synopsis

@@ -128,9 +128,9 @@

Synopsis

-
-

A::B::D<bool>

+
+

A::B::D<bool>

Synopsis

@@ -146,9 +146,9 @@

Synopsis

-
-

A::B<double>

+
+

A::B<double>

Synopsis

@@ -181,9 +181,9 @@

Types

-
-

A::B<double>::C

+
+

A::B<double>::C

Synopsis

@@ -198,9 +198,9 @@

Synopsis

-
-

A::B<double>::D

+
+

A::B<double>::D

Synopsis

@@ -216,9 +216,9 @@

Synopsis

-
-

A::B<double>::D<bool>

+
+

A::B<double>::D<bool>

Synopsis

@@ -234,9 +234,9 @@

Synopsis

-
-

E

+
+

E

Synopsis

@@ -292,9 +292,9 @@

Data Members

-
-

E::m0

+
+

E::m0

Synopsis

@@ -307,9 +307,9 @@

Synopsis

-
-

E::m1

+
+

E::m1

Synopsis

@@ -322,9 +322,9 @@

Synopsis

-
-

E::m2

+
+

E::m2

Synopsis

@@ -337,9 +337,9 @@

Synopsis

-
-

E::m3

+
+

E::m3

Synopsis

@@ -352,9 +352,9 @@

Synopsis

-
-

E::m4

+
+

E::m4

Synopsis

@@ -367,9 +367,9 @@

Synopsis

-
-

E::m5

+
+

E::m5

Synopsis

@@ -382,9 +382,9 @@

Synopsis

-
-

E::m6

+
+

E::m6

Synopsis

@@ -397,9 +397,9 @@

Synopsis

-
-

E::m7

+
+

E::m7

Synopsis

@@ -412,9 +412,9 @@

Synopsis

-
-

E::m8

+
+

E::m8

Synopsis

@@ -427,9 +427,9 @@

Synopsis

-
-

E::m9

+
+

E::m9

Synopsis

@@ -442,9 +442,9 @@

Synopsis

-
-

E::m10

+
+

E::m10

Synopsis

@@ -457,9 +457,9 @@

Synopsis

-
-

E::m11

+
+

E::m11

Synopsis

@@ -472,9 +472,9 @@

Synopsis

-
-

E::m12

+
+

E::m12

Synopsis

@@ -487,9 +487,9 @@

Synopsis

-
-

E::m13

+
+

E::m13

Synopsis

@@ -502,9 +502,9 @@

Synopsis

-
-

E::m14

+
+

E::m14

Synopsis

diff --git a/test-files/golden-tests/class-template.html b/test-files/golden-tests/class-template.html index 0b5c32c7b4..2ab66bff4f 100644 --- a/test-files/golden-tests/class-template.html +++ b/test-files/golden-tests/class-template.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -31,9 +31,9 @@

Types

-
-

S

+
+

S

Synopsis

@@ -48,9 +48,9 @@

Synopsis

-
-

C0

+
+

C0

Synopsis

@@ -96,9 +96,9 @@

Data Members

-
-

C0::w

+
+

C0::w

Synopsis

@@ -111,9 +111,9 @@

Synopsis

-
-

C0::x

+
+

C0::x

Synopsis

@@ -126,9 +126,9 @@

Synopsis

-
-

C0::y

+
+

C0::y

Synopsis

@@ -141,9 +141,9 @@

Synopsis

-
-

C0::N0

+
+

C0::N0

Synopsis

@@ -171,9 +171,9 @@

Data Members

-
-

C0::N0::z

+
+

C0::N0::z

Synopsis

@@ -186,9 +186,9 @@

Synopsis

-
-

C1

+
+

C1

Synopsis

@@ -229,9 +229,9 @@

Data Members

-
-

C1::w

+
+

C1::w

Synopsis

@@ -244,9 +244,9 @@

Synopsis

-
-

C1::N1

+
+

C1::N1

Synopsis

@@ -279,9 +279,9 @@

Data Members

-
-

C1::N1::x

+
+

C1::N1::x

Synopsis

@@ -294,9 +294,9 @@

Synopsis

-
-

C1::N1::y

+
+

C1::N1::y

Synopsis

@@ -309,9 +309,9 @@

Synopsis

-
-

C1::N1::z

+
+

C1::N1::z

Synopsis

@@ -324,9 +324,9 @@

Synopsis

-
-

C2

+
+

C2

Synopsis

@@ -368,9 +368,9 @@

Data Members

-
-

C2::v

+
+

C2::v

Synopsis

@@ -383,9 +383,9 @@

Synopsis

-
-

C2::N2

+
+

C2::N2

Synopsis

@@ -420,9 +420,9 @@

Data Members

-
-

C2::N2::w

+
+

C2::N2::w

Synopsis

@@ -435,9 +435,9 @@

Synopsis

-
-

C2::N2::x

+
+

C2::N2::x

Synopsis

@@ -450,9 +450,9 @@

Synopsis

-
-

C2::N2::y

+
+

C2::N2::y

Synopsis

@@ -465,9 +465,9 @@

Synopsis

-
-

C2::N2::z

+
+

C2::N2::z

Synopsis

@@ -480,9 +480,9 @@

Synopsis

-
-

C3

+
+

C3

Synopsis

@@ -511,9 +511,9 @@

Data Members

-
-

C3::v

+
+

C3::v

Synopsis

diff --git a/test-files/golden-tests/commands.html b/test-files/golden-tests/commands.html index 8fe83a1238..4f1ee46c00 100644 --- a/test-files/golden-tests/commands.html +++ b/test-files/golden-tests/commands.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -25,9 +25,9 @@

Functions

-
-

f1

+
+

f1

brief

diff --git a/test-files/golden-tests/concept.html b/test-files/golden-tests/concept.html index 86e61af999..9bce903fed 100644 --- a/test-files/golden-tests/concept.html +++ b/test-files/golden-tests/concept.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -49,9 +49,9 @@

Concepts

-
-

C

+
+

C

Synopsis

@@ -65,9 +65,9 @@

Synopsis

-
-

f

+
+

f

Synopsis

@@ -82,9 +82,9 @@

Synopsis

-
-

x

+
+

x

Synopsis

diff --git a/test-files/golden-tests/dependency-propagation.html b/test-files/golden-tests/dependency-propagation.html index 27c75f5833..2e529985cc 100644 --- a/test-files/golden-tests/dependency-propagation.html +++ b/test-files/golden-tests/dependency-propagation.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -36,9 +36,9 @@

Types

-
-

E

+
+

E

Synopsis

@@ -54,9 +54,9 @@

Synopsis

-
-

N

+
+

N

Types

@@ -76,9 +76,9 @@

Types

-
-

N::C

+
+

N::C

Synopsis

@@ -92,9 +92,9 @@

Synopsis

-
-

N::B

+
+

N::B

Synopsis

@@ -108,9 +108,9 @@

Synopsis

-
-

N::A

+
+

N::A

Synopsis

diff --git a/test-files/golden-tests/duplicate-jdoc.html b/test-files/golden-tests/duplicate-jdoc.html index 93cd424b5c..83d771ffbd 100644 --- a/test-files/golden-tests/duplicate-jdoc.html +++ b/test-files/golden-tests/duplicate-jdoc.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -45,9 +45,9 @@

Functions

-
-

f0

+
+

f0

f0 brief

@@ -67,9 +67,9 @@

Synopsis

-
-

f1

+
+

f1

f1 brief

@@ -89,9 +89,9 @@

Synopsis

-
-

g0

+
+

g0

g0 brief

@@ -132,9 +132,9 @@

Parameters

-
-

g1

+
+

g1

g1 brief

@@ -175,9 +175,9 @@

Parameters

-
-

h0

+
+

h0

h0 brief

@@ -219,9 +219,9 @@

Template Parameters

-
-

h1

+
+

h1

h1 brief

diff --git a/test-files/golden-tests/empty.html b/test-files/golden-tests/empty.html index f55291011c..2f92faa1ef 100644 --- a/test-files/golden-tests/empty.html +++ b/test-files/golden-tests/empty.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

diff --git a/test-files/golden-tests/enum.html b/test-files/golden-tests/enum.html index fd2225dc08..8cd452873f 100644 --- a/test-files/golden-tests/enum.html +++ b/test-files/golden-tests/enum.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Enums

@@ -33,9 +33,9 @@

Enums

-
-

E0

+
+

E0

E0 brief.

@@ -86,9 +86,9 @@

Description

-
-

E0::e0

+
+

E0::e0

e0 brief.

@@ -114,9 +114,9 @@

Description

-
-

E0::e1

+
+

E0::e1

e1 brief.

@@ -142,9 +142,9 @@

Description

-
-

E1

+
+

E1

Synopsis

@@ -178,9 +178,9 @@

Members

-
-

E1::e2

+
+

E1::e2

Synopsis

@@ -193,9 +193,9 @@

Synopsis

-
-

E1::e3

+
+

E1::e3

Synopsis

@@ -208,9 +208,9 @@

Synopsis

-
-

E2

+
+

E2

E2 brief.

@@ -261,9 +261,9 @@

Description

-
-

E2::e4

+
+

E2::e4

e4 brief.

@@ -289,9 +289,9 @@

Description

-
-

E2::e5

+
+

E2::e5

e5 brief.

@@ -317,9 +317,9 @@

Description

-
-

E3

+
+

E3

Synopsis

@@ -353,9 +353,9 @@

Members

-
-

E3::e6

+
+

E3::e6

Synopsis

@@ -368,9 +368,9 @@

Synopsis

-
-

E3::e7

+
+

E3::e7

Synopsis

diff --git a/test-files/golden-tests/explicit-conv-operator.html b/test-files/golden-tests/explicit-conv-operator.html index 2729d342bf..447dcc51f4 100644 --- a/test-files/golden-tests/explicit-conv-operator.html +++ b/test-files/golden-tests/explicit-conv-operator.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -29,9 +29,9 @@

Types

-
-

Explicit

+
+

Explicit

Synopsis

@@ -59,9 +59,9 @@

Member Functions

-
-

Explicit::operator bool

+
+

Explicit::operator bool

Synopsis

@@ -75,9 +75,9 @@

Synopsis

-
-

ExplicitFalse

+
+

ExplicitFalse

Synopsis

@@ -105,9 +105,9 @@

Member Functions

-
-

ExplicitFalse::operator bool

+
+

ExplicitFalse::operator bool

Synopsis

@@ -121,9 +121,9 @@

Synopsis

-
-

ExplicitTrue

+
+

ExplicitTrue

Synopsis

@@ -151,9 +151,9 @@

Member Functions

-
-

ExplicitTrue::operator bool

+
+

ExplicitTrue::operator bool

Synopsis

@@ -167,9 +167,9 @@

Synopsis

-
-

ExplicitExpression

+
+

ExplicitExpression

Synopsis

@@ -198,9 +198,9 @@

Member Functions

-
-

ExplicitExpression::operator bool

+
+

ExplicitExpression::operator bool

Synopsis

diff --git a/test-files/golden-tests/explicit-ctor.html b/test-files/golden-tests/explicit-ctor.html index 3cdee0ea29..b16c5f979c 100644 --- a/test-files/golden-tests/explicit-ctor.html +++ b/test-files/golden-tests/explicit-ctor.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -29,9 +29,9 @@

Types

-
-

Explicit

+
+

Explicit

Synopsis

@@ -60,9 +60,9 @@

Member Functions

-
-

Explicit::Explicit

+
+

Explicit::Explicit

Synopsis

@@ -100,9 +100,9 @@

Synopsis

» more...
-
-

Explicit::Explicit

+
+

Explicit::Explicit

Synopsis

@@ -116,9 +116,9 @@

Synopsis

-
-

Explicit::Explicit

+
+

Explicit::Explicit

Synopsis

@@ -132,9 +132,9 @@

Synopsis

-
-

Explicit::Explicit

+
+

Explicit::Explicit

Synopsis

@@ -148,9 +148,9 @@

Synopsis

-
-

Explicit::Explicit

+
+

Explicit::Explicit

Synopsis

@@ -166,9 +166,9 @@

Synopsis

-
-

ExplicitTrue

+
+

ExplicitTrue

Synopsis

@@ -197,9 +197,9 @@

Member Functions

-
-

ExplicitTrue::ExplicitTrue

+
+

ExplicitTrue::ExplicitTrue

Synopsis

@@ -237,9 +237,9 @@

Synopsis

» more...
-
-

ExplicitTrue::ExplicitTrue

+
+

ExplicitTrue::ExplicitTrue

Synopsis

@@ -253,9 +253,9 @@

Synopsis

-
-

ExplicitTrue::ExplicitTrue

+
+

ExplicitTrue::ExplicitTrue

Synopsis

@@ -269,9 +269,9 @@

Synopsis

-
-

ExplicitTrue::ExplicitTrue

+
+

ExplicitTrue::ExplicitTrue

Synopsis

@@ -285,9 +285,9 @@

Synopsis

-
-

ExplicitTrue::ExplicitTrue

+
+

ExplicitTrue::ExplicitTrue

Synopsis

@@ -303,9 +303,9 @@

Synopsis

-
-

ExplicitFalse

+
+

ExplicitFalse

Synopsis

@@ -334,9 +334,9 @@

Member Functions

-
-

ExplicitFalse::ExplicitFalse

+
+

ExplicitFalse::ExplicitFalse

Synopsis

@@ -374,9 +374,9 @@

Synopsis

» more...
-
-

ExplicitFalse::ExplicitFalse

+
+

ExplicitFalse::ExplicitFalse

Synopsis

@@ -390,9 +390,9 @@

Synopsis

-
-

ExplicitFalse::ExplicitFalse

+
+

ExplicitFalse::ExplicitFalse

Synopsis

@@ -406,9 +406,9 @@

Synopsis

-
-

ExplicitFalse::ExplicitFalse

+
+

ExplicitFalse::ExplicitFalse

Synopsis

@@ -422,9 +422,9 @@

Synopsis

-
-

ExplicitFalse::ExplicitFalse

+
+

ExplicitFalse::ExplicitFalse

Synopsis

@@ -440,9 +440,9 @@

Synopsis

-
-

ExplicitExpression

+
+

ExplicitExpression

Synopsis

@@ -472,9 +472,9 @@

Member Functions

-
-

ExplicitExpression::ExplicitExpression

+
+

ExplicitExpression::ExplicitExpression

Synopsis

@@ -512,9 +512,9 @@

Synopsis

» more...
-
-

ExplicitExpression::ExplicitExpression

+
+

ExplicitExpression::ExplicitExpression

Synopsis

@@ -528,9 +528,9 @@

Synopsis

-
-

ExplicitExpression::ExplicitExpression

+
+

ExplicitExpression::ExplicitExpression

Synopsis

@@ -544,9 +544,9 @@

Synopsis

-
-

ExplicitExpression::ExplicitExpression

+
+

ExplicitExpression::ExplicitExpression

Synopsis

@@ -560,9 +560,9 @@

Synopsis

-
-

ExplicitExpression::ExplicitExpression

+
+

ExplicitExpression::ExplicitExpression

Synopsis

diff --git a/test-files/golden-tests/explicit-deduct-guide.html b/test-files/golden-tests/explicit-deduct-guide.html index d4bc60a7a4..2b166193ee 100644 --- a/test-files/golden-tests/explicit-deduct-guide.html +++ b/test-files/golden-tests/explicit-deduct-guide.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -42,9 +42,9 @@

Deduction Guides

-
-

X

+
+

X

Synopsis

@@ -60,9 +60,9 @@

Synopsis

-
-

X<0>

+
+

X<0>

Synopsis

@@ -75,9 +75,9 @@

Synopsis

-
-

X<0>

+
+

X<0>

Synopsis

@@ -90,9 +90,9 @@

Synopsis

-
-

X<0>

+
+

X<0>

Synopsis

@@ -105,9 +105,9 @@

Synopsis

-
-

X<0>

+
+

X<0>

Synopsis

diff --git a/test-files/golden-tests/explicit-object-parameter.html b/test-files/golden-tests/explicit-object-parameter.html index 2322669afd..6fd090916e 100644 --- a/test-files/golden-tests/explicit-object-parameter.html +++ b/test-files/golden-tests/explicit-object-parameter.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

Optional

+
+

Optional

Synopsis

@@ -52,9 +52,9 @@

Member Functions

-
-

Optional::value

+
+

Optional::value

Synopsis

@@ -82,9 +82,9 @@

Synopsis

» more...
-
-

Optional::value

+
+

Optional::value

Synopsis

@@ -100,9 +100,9 @@

Synopsis

-
-

Optional::value

+
+

Optional::value

Synopsis

diff --git a/test-files/golden-tests/filters/blacklist_0.html b/test-files/golden-tests/filters/blacklist_0.html index df01c480d0..e7ee0fbc42 100644 --- a/test-files/golden-tests/filters/blacklist_0.html +++ b/test-files/golden-tests/filters/blacklist_0.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -29,9 +29,9 @@

Namespaces

-
-

N0

+
+

N0

Functions

@@ -47,9 +47,9 @@

Functions

-
-

N0::f0

+
+

N0::f0

Synopsis

@@ -63,14 +63,14 @@

Synopsis

-
-

N3

+
+

N3

-
-

N4

+
+

N4

Namespaces

@@ -88,9 +88,9 @@

Namespaces

-
-

N4::N5

+
+

N4::N5

Functions

@@ -106,9 +106,9 @@

Functions

-
-

N4::N5::f1

+
+

N4::N5::f1

Synopsis

@@ -122,9 +122,9 @@

Synopsis

-
-

N4::N6

+
+

N4::N6

Functions

@@ -140,9 +140,9 @@

Functions

-
-

N4::N6::f1

+
+

N4::N6::f1

Synopsis

@@ -156,9 +156,9 @@

Synopsis

-
-

N7

+
+

N7

Namespaces

@@ -176,14 +176,14 @@

Namespaces

-
-

N7::N8

+
+

N7::N8

-
-

N7::N9

+
+

N7::N9

Functions

@@ -199,9 +199,9 @@

Functions

-
-

N7::N9::g0

+
+

N7::N9::g0

Synopsis

diff --git a/test-files/golden-tests/filters/blacklist_test.html b/test-files/golden-tests/filters/blacklist_test.html index e6be4a1ec4..29cc83a04a 100644 --- a/test-files/golden-tests/filters/blacklist_test.html +++ b/test-files/golden-tests/filters/blacklist_test.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -25,9 +25,9 @@

Namespaces

-
-

to_be_documented

+
+

to_be_documented

Functions

@@ -43,9 +43,9 @@

Functions

-
-

to_be_documented::documented_function

+
+

to_be_documented::documented_function

Synopsis

@@ -59,9 +59,9 @@

Synopsis

-
-

blacklisted

+
+

blacklisted

diff --git a/test-files/golden-tests/filters/filters.html b/test-files/golden-tests/filters/filters.html index 2565608280..5358e29812 100644 --- a/test-files/golden-tests/filters/filters.html +++ b/test-files/golden-tests/filters/filters.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -31,9 +31,9 @@

Namespaces

-
-

A

+
+

A

Namespaces

@@ -64,9 +64,9 @@

Functions

-
-

A::f0

+
+

A::f0

Synopsis

@@ -80,9 +80,9 @@

Synopsis

-
-

A::detail

+
+

A::detail

Functions

@@ -98,9 +98,9 @@

Functions

-
-

A::detail::g0

+
+

A::detail::g0

Synopsis

@@ -114,9 +114,9 @@

Synopsis

-
-

A::detair

+
+

A::detair

Types

@@ -145,9 +145,9 @@

Functions

-
-

A::detair::f4

+
+

A::detair::f4

Synopsis

@@ -161,9 +161,9 @@

Synopsis

-
-

A::detair::Y

+
+

A::detair::Y

Synopsis

@@ -204,9 +204,9 @@

Member Functions

-
-

A::detair::Y::f6

+
+

A::detair::Y::f6

Synopsis

@@ -220,9 +220,9 @@

Synopsis

-
-

A::detair::Y::Z

+
+

A::detair::Y::Z

Synopsis

@@ -250,9 +250,9 @@

Member Functions

-
-

A::detair::Y::Z::f7

+
+

A::detair::Y::Z::f7

Synopsis

@@ -266,9 +266,9 @@

Synopsis

-
-

B

+
+

B

Namespaces

@@ -297,9 +297,9 @@

Functions

-
-

B::f0

+
+

B::f0

Synopsis

@@ -313,9 +313,9 @@

Synopsis

-
-

B::detair

+
+

B::detair

Types

@@ -344,9 +344,9 @@

Functions

-
-

B::detair::f4

+
+

B::detair::f4

Synopsis

@@ -360,9 +360,9 @@

Synopsis

-
-

B::detair::Y

+
+

B::detair::Y

Synopsis

@@ -403,9 +403,9 @@

Member Functions

-
-

B::detair::Y::f6

+
+

B::detair::Y::f6

Synopsis

@@ -419,9 +419,9 @@

Synopsis

-
-

B::detair::Y::Z

+
+

B::detair::Y::Z

Synopsis

@@ -449,9 +449,9 @@

Member Functions

-
-

B::detair::Y::Z::f7

+
+

B::detair::Y::Z::f7

Synopsis

@@ -465,9 +465,9 @@

Synopsis

-
-

C

+
+

C

Functions

@@ -483,9 +483,9 @@

Functions

-
-

C::g0

+
+

C::g0

Synopsis

@@ -499,9 +499,9 @@

Synopsis

-
-

D

+
+

D

Namespaces

@@ -532,9 +532,9 @@

Functions

-
-

D::E

+
+

D::E

Functions

@@ -550,9 +550,9 @@

Functions

-
-

D::E::g0

+
+

D::E::g0

Synopsis

@@ -566,9 +566,9 @@

Synopsis

-
-

D::f1

+
+

D::f1

Synopsis

@@ -582,9 +582,9 @@

Synopsis

-
-

D::g1

+
+

D::g1

Synopsis

@@ -598,9 +598,9 @@

Synopsis

-
-

F

+
+

F

Namespaces

@@ -629,9 +629,9 @@

Functions

-
-

F::g0

+
+

F::g0

Synopsis

@@ -645,9 +645,9 @@

Synopsis

-
-

F::G

+
+

F::G

Functions

@@ -665,9 +665,9 @@

Functions

-
-

F::G::f1

+
+

F::G::f1

Synopsis

@@ -681,9 +681,9 @@

Synopsis

-
-

F::G::g1

+
+

F::G::g1

Synopsis

diff --git a/test-files/golden-tests/filters/whitelist_0.html b/test-files/golden-tests/filters/whitelist_0.html index c261976bcc..5522db714b 100644 --- a/test-files/golden-tests/filters/whitelist_0.html +++ b/test-files/golden-tests/filters/whitelist_0.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -27,9 +27,9 @@

Namespaces

-
-

N0

+
+

N0

Functions

@@ -45,9 +45,9 @@

Functions

-
-

N0::f0_WL

+
+

N0::f0_WL

Synopsis

@@ -61,9 +61,9 @@

Synopsis

-
-

N1

+
+

N1

Namespaces

@@ -81,9 +81,9 @@

Namespaces

-
-

N1::N3_WL

+
+

N1::N3_WL

Functions

@@ -99,9 +99,9 @@

Functions

-
-

N1::N3_WL::f1_WL

+
+

N1::N3_WL::f1_WL

Synopsis

@@ -115,9 +115,9 @@

Synopsis

-
-

N1::N4

+
+

N1::N4

Functions

@@ -133,9 +133,9 @@

Functions

-
-

N1::N4::f1_WL

+
+

N1::N4::f1_WL

Synopsis

@@ -149,9 +149,9 @@

Synopsis

-
-

N5

+
+

N5

Namespaces

@@ -180,9 +180,9 @@

Functions

-
-

N5::f0

+
+

N5::f0

Synopsis

@@ -196,9 +196,9 @@

Synopsis

-
-

N5::N6_BL

+
+

N5::N6_BL

Namespaces

@@ -216,9 +216,9 @@

Namespaces

-
-

N5::N6_BL::N7

+
+

N5::N6_BL::N7

Functions

@@ -234,9 +234,9 @@

Functions

-
-

N5::N6_BL::N7::f2_WL

+
+

N5::N6_BL::N7::f2_WL

Synopsis

@@ -250,9 +250,9 @@

Synopsis

-
-

N5::N6_BL::M7

+
+

N5::N6_BL::M7

Functions

@@ -268,9 +268,9 @@

Functions

-
-

N5::N6_BL::M7::f2_WL

+
+

N5::N6_BL::M7::f2_WL

Synopsis

diff --git a/test-files/golden-tests/filters/whitelist_test.html b/test-files/golden-tests/filters/whitelist_test.html index 6285e69e68..bc0796fd7b 100644 --- a/test-files/golden-tests/filters/whitelist_test.html +++ b/test-files/golden-tests/filters/whitelist_test.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -25,9 +25,9 @@

Namespaces

-
-

to_be_documented

+
+

to_be_documented

Functions

@@ -43,9 +43,9 @@

Functions

-
-

to_be_documented::documented_function

+
+

to_be_documented::documented_function

Synopsis

@@ -59,9 +59,9 @@

Synopsis

-
-

blacklisted

+
+

blacklisted

Functions

@@ -77,9 +77,9 @@

Functions

-
-

blacklisted::whitelisted_function

+
+

blacklisted::whitelisted_function

Synopsis

diff --git a/test-files/golden-tests/friend-1.html b/test-files/golden-tests/friend-1.html index 6043e52199..e49de486dc 100644 --- a/test-files/golden-tests/friend-1.html +++ b/test-files/golden-tests/friend-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -38,9 +38,9 @@

Functions

-
-

T

+
+

T

Synopsis

@@ -70,9 +70,9 @@

Friends

-
-

f

+
+

f

f

@@ -93,9 +93,9 @@

Synopsis

-
-

f

+
+

f

f

diff --git a/test-files/golden-tests/friend-2.html b/test-files/golden-tests/friend-2.html index ee49b047cc..5a835b83ec 100644 --- a/test-files/golden-tests/friend-2.html +++ b/test-files/golden-tests/friend-2.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -38,9 +38,9 @@

Functions

-
-

T

+
+

T

Synopsis

@@ -70,9 +70,9 @@

Friends

-
-

f

+
+

f

f

@@ -93,9 +93,9 @@

Synopsis

-
-

f

+
+

f

f

diff --git a/test-files/golden-tests/friend-3.html b/test-files/golden-tests/friend-3.html index b2f0069c8d..28c5ac214e 100644 --- a/test-files/golden-tests/friend-3.html +++ b/test-files/golden-tests/friend-3.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -40,9 +40,9 @@

Functions

-
-

T

+
+

T

Synopsis

@@ -72,9 +72,9 @@

Friends

-
-

f

+
+

f

T::f

@@ -95,9 +95,9 @@

Synopsis

-
-

f

+
+

f

T::f

@@ -117,9 +117,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -147,9 +147,9 @@

Friends

-
-

f

+
+

f

Synopsis

diff --git a/test-files/golden-tests/friend-4.html b/test-files/golden-tests/friend-4.html index ed0a8414c2..00262f2546 100644 --- a/test-files/golden-tests/friend-4.html +++ b/test-files/golden-tests/friend-4.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -40,9 +40,9 @@

Functions

-
-

T

+
+

T

Synopsis

@@ -70,9 +70,9 @@

Friends

-
-

f

+
+

f

Synopsis

@@ -87,9 +87,9 @@

Synopsis

-
-

f

+
+

f

U::f

@@ -109,9 +109,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -141,9 +141,9 @@

Friends

-
-

f

+
+

f

U::f

diff --git a/test-files/golden-tests/friend-5.html b/test-files/golden-tests/friend-5.html index e7bc41b6de..221b33b438 100644 --- a/test-files/golden-tests/friend-5.html +++ b/test-files/golden-tests/friend-5.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -40,9 +40,9 @@

Functions

-
-

T

+
+

T

Synopsis

@@ -70,9 +70,9 @@

Friends

-
-

f

+
+

f

Synopsis

@@ -87,9 +87,9 @@

Synopsis

-
-

f

+
+

f

f

@@ -109,9 +109,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -139,9 +139,9 @@

Friends

-
-

f

+
+

f

Synopsis

diff --git a/test-files/golden-tests/friend-6.html b/test-files/golden-tests/friend-6.html index ffd876d377..569c854051 100644 --- a/test-files/golden-tests/friend-6.html +++ b/test-files/golden-tests/friend-6.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -33,9 +33,9 @@

Types

-
-

T

+
+

T

Struct T brief

@@ -75,9 +75,9 @@

Friends

-
-

[object Object]

+
+

[object Object]

Friend int brief

@@ -96,9 +96,9 @@

Synopsis

-
-

[object Object]

+
+

[object Object]

Friend class Z brief

@@ -117,9 +117,9 @@

Synopsis

-
-

U

+
+

U

Struct U brief

@@ -155,9 +155,9 @@

Friends

-
-

[object Object]

+
+

[object Object]

Friend T brief

@@ -176,9 +176,9 @@

Synopsis

-
-

V

+
+

V

Struct V brief

@@ -214,9 +214,9 @@

Friends

-
-

[object Object]

+
+

[object Object]

Friend struct U brief

diff --git a/test-files/golden-tests/function-parm-decay.html b/test-files/golden-tests/function-parm-decay.html index c695b41f05..625a104695 100644 --- a/test-files/golden-tests/function-parm-decay.html +++ b/test-files/golden-tests/function-parm-decay.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -44,9 +44,9 @@

Functions

-
-

f

+
+

f

Synopsis

@@ -60,9 +60,9 @@

Synopsis

-
-

g

+
+

g

Synopsis

@@ -76,9 +76,9 @@

Synopsis

-
-

h

+
+

h

Synopsis

@@ -92,9 +92,9 @@

Synopsis

-
-

T

+
+

T

Synopsis

@@ -107,9 +107,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -122,9 +122,9 @@

Synopsis

-
-

i

+
+

i

Synopsis

diff --git a/test-files/golden-tests/function-template.html b/test-files/golden-tests/function-template.html index 270d982307..ba6da45344 100644 --- a/test-files/golden-tests/function-template.html +++ b/test-files/golden-tests/function-template.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -45,9 +45,9 @@

Functions

-
-

f0

+
+

f0

Synopsis

@@ -62,9 +62,9 @@

Synopsis

-
-

f1

+
+

f1

Synopsis

@@ -79,9 +79,9 @@

Synopsis

-
-

f2

+
+

f2

Synopsis

@@ -96,9 +96,9 @@

Synopsis

-
-

f3

+
+

f3

Synopsis

@@ -115,9 +115,9 @@

Synopsis

-
-

g0

+
+

g0

Synopsis

@@ -132,9 +132,9 @@

Synopsis

-
-

g1

+
+

g1

Synopsis

@@ -149,9 +149,9 @@

Synopsis

-
-

g2

+
+

g2

Synopsis

@@ -168,9 +168,9 @@

Synopsis

-
-

h0

+
+

h0

Synopsis

@@ -185,9 +185,9 @@

Synopsis

-
-

h1

+
+

h1

Synopsis

@@ -206,9 +206,9 @@

Synopsis

-
-

i

+
+

i

Synopsis

@@ -225,9 +225,9 @@

Synopsis

-
-

j0

+
+

j0

Synopsis

@@ -242,9 +242,9 @@

Synopsis

-
-

j1

+
+

j1

Synopsis

diff --git a/test-files/golden-tests/function-tparm-decay.html b/test-files/golden-tests/function-tparm-decay.html index e59fbe1f68..c9942d411c 100644 --- a/test-files/golden-tests/function-tparm-decay.html +++ b/test-files/golden-tests/function-tparm-decay.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -44,9 +44,9 @@

Functions

-
-

f

+
+

f

Synopsis

@@ -61,9 +61,9 @@

Synopsis

-
-

g

+
+

g

Synopsis

@@ -78,9 +78,9 @@

Synopsis

-
-

h

+
+

h

Synopsis

@@ -95,9 +95,9 @@

Synopsis

-
-

T

+
+

T

Synopsis

@@ -110,9 +110,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -125,9 +125,9 @@

Synopsis

-
-

i

+
+

i

Synopsis

diff --git a/test-files/golden-tests/implicit-instantiation-member-ref.html b/test-files/golden-tests/implicit-instantiation-member-ref.html index 010c6317bc..e5aafeadbb 100644 --- a/test-files/golden-tests/implicit-instantiation-member-ref.html +++ b/test-files/golden-tests/implicit-instantiation-member-ref.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -45,9 +45,9 @@

Types

-
-

S0

+
+

S0

Synopsis

@@ -82,9 +82,9 @@

Types

-
-

S0::M0

+
+

S0::M0

Synopsis

@@ -97,9 +97,9 @@

Synopsis

-
-

S0::S1

+
+

S0::S1

Synopsis

@@ -114,9 +114,9 @@

Synopsis

-
-

S0::M1

+
+

S0::M1

Synopsis

@@ -130,9 +130,9 @@

Synopsis

-
-

S0::S2

+
+

S0::S2

Synopsis

@@ -167,9 +167,9 @@

Types

-
-

S0::S2::M2

+
+

S0::S2::M2

Synopsis

@@ -182,9 +182,9 @@

Synopsis

-
-

S0::S2::S3

+
+

S0::S2::S3

Synopsis

@@ -199,9 +199,9 @@

Synopsis

-
-

S0::S2::M3

+
+

S0::S2::M3

Synopsis

@@ -215,9 +215,9 @@

Synopsis

-
-

S0::S2::S4

+
+

S0::S2::S4

Synopsis

@@ -246,9 +246,9 @@

Types

-
-

S0::S2::S4::M4

+
+

S0::S2::S4::M4

Synopsis

@@ -261,9 +261,9 @@

Synopsis

-
-

A0

+
+

A0

Synopsis

@@ -276,9 +276,9 @@

Synopsis

-
-

A1

+
+

A1

Synopsis

@@ -291,9 +291,9 @@

Synopsis

-
-

A2

+
+

A2

Synopsis

@@ -306,9 +306,9 @@

Synopsis

-
-

A3

+
+

A3

Synopsis

@@ -321,9 +321,9 @@

Synopsis

-
-

A4

+
+

A4

Synopsis

@@ -336,9 +336,9 @@

Synopsis

-
-

A5

+
+

A5

Synopsis

@@ -351,9 +351,9 @@

Synopsis

-
-

A6

+
+

A6

Synopsis

@@ -366,9 +366,9 @@

Synopsis

-
-

A7

+
+

A7

Synopsis

@@ -381,9 +381,9 @@

Synopsis

-
-

A8

+
+

A8

Synopsis

@@ -396,9 +396,9 @@

Synopsis

-
-

A9

+
+

A9

Synopsis

@@ -411,9 +411,9 @@

Synopsis

-
-

A10

+
+

A10

Synopsis

diff --git a/test-files/golden-tests/local-class.html b/test-files/golden-tests/local-class.html index 45c8af707b..e20c57c2f9 100644 --- a/test-files/golden-tests/local-class.html +++ b/test-files/golden-tests/local-class.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -36,9 +36,9 @@

Functions

-
-

f

+
+

f

Synopsis

@@ -52,9 +52,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

diff --git a/test-files/golden-tests/mem-fn.html b/test-files/golden-tests/mem-fn.html index c71c04f0c4..3580b175ff 100644 --- a/test-files/golden-tests/mem-fn.html +++ b/test-files/golden-tests/mem-fn.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -57,9 +57,9 @@

Types

-
-

T01

+
+

T01

Synopsis

@@ -87,9 +87,9 @@

Member Functions

-
-

T01::f

+
+

T01::f

Synopsis

@@ -103,9 +103,9 @@

Synopsis

-
-

T02

+
+

T02

Synopsis

@@ -133,9 +133,9 @@

Static Member Functions

-
-

T02::f

+
+

T02::f

Synopsis

@@ -150,9 +150,9 @@

Synopsis

-
-

T03

+
+

T03

Synopsis

@@ -180,9 +180,9 @@

Member Functions

-
-

T03::f

+
+

T03::f

Synopsis

@@ -196,9 +196,9 @@

Synopsis

-
-

T04

+
+

T04

Synopsis

@@ -226,9 +226,9 @@

Member Functions

-
-

T04::f

+
+

T04::f

Synopsis

@@ -242,9 +242,9 @@

Synopsis

-
-

T05

+
+

T05

Synopsis

@@ -272,9 +272,9 @@

Member Functions

-
-

T05::f

+
+

T05::f

Synopsis

@@ -288,9 +288,9 @@

Synopsis

-
-

T06

+
+

T06

Synopsis

@@ -318,9 +318,9 @@

Member Functions

-
-

T06::f

+
+

T06::f

Synopsis

@@ -335,9 +335,9 @@

Synopsis

-
-

T08

+
+

T08

Synopsis

@@ -365,9 +365,9 @@

Member Functions

-
-

T08::f

+
+

T08::f

Synopsis

@@ -381,9 +381,9 @@

Synopsis

-
-

T09

+
+

T09

Synopsis

@@ -411,9 +411,9 @@

Member Functions

-
-

T09::f

+
+

T09::f

Synopsis

@@ -427,9 +427,9 @@

Synopsis

-
-

T10

+
+

T10

Synopsis

@@ -457,9 +457,9 @@

Member Functions

-
-

T10::f

+
+

T10::f

Synopsis

@@ -473,9 +473,9 @@

Synopsis

-
-

T11

+
+

T11

Synopsis

@@ -503,9 +503,9 @@

Member Functions

-
-

T11::f

+
+

T11::f

Synopsis

@@ -519,9 +519,9 @@

Synopsis

-
-

T12

+
+

T12

Synopsis

@@ -549,9 +549,9 @@

Member Functions

-
-

T12::f

+
+

T12::f

Synopsis

@@ -565,9 +565,9 @@

Synopsis

-
-

T13

+
+

T13

Synopsis

@@ -595,9 +595,9 @@

Member Functions

-
-

T13::f

+
+

T13::f

Synopsis

@@ -612,9 +612,9 @@

Synopsis

-
-

T14

+
+

T14

Synopsis

@@ -642,9 +642,9 @@

Member Functions

-
-

T14::f

+
+

T14::f

Synopsis

@@ -659,9 +659,9 @@

Synopsis

-
-

T15

+
+

T15

Synopsis

@@ -689,9 +689,9 @@

Member Functions

-
-

T15::f

+
+

T15::f

Synopsis

@@ -705,9 +705,9 @@

Synopsis

-
-

T16

+
+

T16

Synopsis

@@ -735,9 +735,9 @@

Static Member Functions

-
-

T16::f

+
+

T16::f

Synopsis

@@ -752,9 +752,9 @@

Synopsis

-
-

T17

+
+

T17

Synopsis

@@ -782,9 +782,9 @@

Member Functions

-
-

T17::f

+
+

T17::f

Synopsis

@@ -799,9 +799,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -844,9 +844,9 @@

Static Member Functions

-
-

U::f1

+
+

U::f1

Synopsis

@@ -861,9 +861,9 @@

Synopsis

-
-

U::f2

+
+

U::f2

Synopsis

@@ -879,9 +879,9 @@

Synopsis

-
-

U::f3

+
+

U::f3

Synopsis

@@ -896,9 +896,9 @@

Synopsis

-
-

V

+
+

V

Synopsis

@@ -941,9 +941,9 @@

Static Member Functions

-
-

V::f3

+
+

V::f3

Synopsis

diff --git a/test-files/golden-tests/namespace-alias-1.html b/test-files/golden-tests/namespace-alias-1.html index 885d307ed1..a6ac88f821 100644 --- a/test-files/golden-tests/namespace-alias-1.html +++ b/test-files/golden-tests/namespace-alias-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -23,14 +23,14 @@

Namespaces

-
-

LongName

+
+

LongName

-
-

A

+
+

A

Synopsis

diff --git a/test-files/golden-tests/namespace-alias-2.html b/test-files/golden-tests/namespace-alias-2.html index e17b0a25e5..40d55e32f0 100644 --- a/test-files/golden-tests/namespace-alias-2.html +++ b/test-files/golden-tests/namespace-alias-2.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -23,14 +23,14 @@

Namespaces

-
-

LongName

+
+

LongName

-
-

A

+
+

A

Synopsis

@@ -43,9 +43,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

diff --git a/test-files/golden-tests/namespace-alias-3.html b/test-files/golden-tests/namespace-alias-3.html index 04ebe2f889..e2b0bf1fd7 100644 --- a/test-files/golden-tests/namespace-alias-3.html +++ b/test-files/golden-tests/namespace-alias-3.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -23,14 +23,14 @@

Namespaces

-
-

LongName

+
+

LongName

-
-

A

+
+

A

Synopsis

@@ -43,9 +43,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

diff --git a/test-files/golden-tests/namespace.html b/test-files/golden-tests/namespace.html index 54f6669431..9dadbaacb7 100644 --- a/test-files/golden-tests/namespace.html +++ b/test-files/golden-tests/namespace.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -29,9 +29,9 @@

Namespaces

-
-

A

+
+

A

Namespaces

@@ -64,9 +64,9 @@

Functions

-
-

A::f0

+
+

A::f0

Synopsis

@@ -80,9 +80,9 @@

Synopsis

-
-

A::B

+
+

A::B

Functions

@@ -98,9 +98,9 @@

Functions

-
-

A::B::f1

+
+

A::B::f1

Synopsis

@@ -114,9 +114,9 @@

Synopsis

-
-

A::C

+
+

A::C

Functions

@@ -132,9 +132,9 @@

Functions

-
-

A::C::f2

+
+

A::C::f2

Synopsis

@@ -148,9 +148,9 @@

Synopsis

-
-

Unnamed namespace

+
+

Unnamed namespace

Functions

@@ -166,9 +166,9 @@

Functions

-
-

A::f3

+
+

A::f3

Synopsis

@@ -182,9 +182,9 @@

Synopsis

-
-

D

+
+

D

Namespaces

@@ -217,9 +217,9 @@

Functions

-
-

D::f5

+
+

D::f5

Synopsis

@@ -233,9 +233,9 @@

Synopsis

-
-

D::E

+
+

D::E

Functions

@@ -251,9 +251,9 @@

Functions

-
-

D::E::f6

+
+

D::E::f6

Synopsis

@@ -267,9 +267,9 @@

Synopsis

-
-

D::F

+
+

D::F

Functions

@@ -285,9 +285,9 @@

Functions

-
-

D::F::f7

+
+

D::F::f7

Synopsis

@@ -301,9 +301,9 @@

Synopsis

-
-

Unnamed namespace

+
+

Unnamed namespace

Functions

@@ -319,9 +319,9 @@

Functions

-
-

D::f8

+
+

D::f8

Synopsis

@@ -335,9 +335,9 @@

Synopsis

-
-

Unnamed namespace

+
+

Unnamed namespace

Namespaces

@@ -368,9 +368,9 @@

Functions

-
-

f10

+
+

f10

Synopsis

@@ -384,9 +384,9 @@

Synopsis

-
-

G

+
+

G

Functions

@@ -402,9 +402,9 @@

Functions

-
-

G::f11

+
+

G::f11

Synopsis

@@ -418,9 +418,9 @@

Synopsis

-
-

H

+
+

H

Functions

@@ -436,9 +436,9 @@

Functions

-
-

H::f12

+
+

H::f12

Synopsis

@@ -452,9 +452,9 @@

Synopsis

-
-

I

+
+

I

Namespaces

@@ -470,9 +470,9 @@

Namespaces

-
-

Unnamed namespace

+
+

Unnamed namespace

Functions

@@ -488,9 +488,9 @@

Functions

-
-

I::f14

+
+

I::f14

Synopsis

diff --git a/test-files/golden-tests/nested-private-template.html b/test-files/golden-tests/nested-private-template.html index 59b8997c67..5fb380d1d9 100644 --- a/test-files/golden-tests/nested-private-template.html +++ b/test-files/golden-tests/nested-private-template.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

range

+
+

range

Synopsis

@@ -56,9 +56,9 @@

Private Types

-
-

range::impl

+
+

range::impl

Synopsis

@@ -76,9 +76,9 @@

Synopsis

-
-

range::impl<R, false>

+
+

range::impl<R, false>

Synopsis

diff --git a/test-files/golden-tests/no_unique_address.html b/test-files/golden-tests/no_unique_address.html index 8e5821d5da..e6d341173c 100644 --- a/test-files/golden-tests/no_unique_address.html +++ b/test-files/golden-tests/no_unique_address.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -25,9 +25,9 @@

Types

-
-

Empty

+
+

Empty

Synopsis

@@ -42,9 +42,9 @@

Synopsis

-
-

T

+
+

T

Synopsis

@@ -74,9 +74,9 @@

Data Members

-
-

T::i

+
+

T::i

Synopsis

@@ -89,9 +89,9 @@

Synopsis

-
-

T::e

+
+

T::e

Synopsis

diff --git a/test-files/golden-tests/noreturn.html b/test-files/golden-tests/noreturn.html index 6d9f91b5f9..5504010bd1 100644 --- a/test-files/golden-tests/noreturn.html +++ b/test-files/golden-tests/noreturn.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -36,9 +36,9 @@

Functions

-
-

f1

+
+

f1

Synopsis

@@ -52,9 +52,9 @@

Synopsis

-
-

T

+
+

T

Synopsis

@@ -108,9 +108,9 @@

Friends

-
-

T::f2

+
+

T::f2

Synopsis

@@ -125,9 +125,9 @@

Synopsis

-
-

T::f3

+
+

T::f3

Synopsis

@@ -141,9 +141,9 @@

Synopsis

-
-

f1

+
+

f1

Synopsis

diff --git a/test-files/golden-tests/ns-variables.html b/test-files/golden-tests/ns-variables.html index 4d87c6fffd..7c7842445c 100644 --- a/test-files/golden-tests/ns-variables.html +++ b/test-files/golden-tests/ns-variables.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -52,9 +52,9 @@

Variables

-
-

i

+
+

i

Synopsis

@@ -68,9 +68,9 @@

Synopsis

-
-

j

+
+

j

Synopsis

@@ -83,9 +83,9 @@

Synopsis

-
-

k

+
+

k

Synopsis

@@ -100,9 +100,9 @@

Synopsis

-
-

l

+
+

l

Synopsis

@@ -116,9 +116,9 @@

Synopsis

-
-

pi

+
+

pi

Synopsis

@@ -131,9 +131,9 @@

Synopsis

-
-

T

+
+

T

Synopsis

@@ -148,9 +148,9 @@

Synopsis

-
-

t

+
+

t

Synopsis

@@ -164,9 +164,9 @@

Synopsis

-
-

x0

+
+

x0

Synopsis

@@ -180,9 +180,9 @@

Synopsis

-
-

x1

+
+

x1

Synopsis

@@ -197,9 +197,9 @@

Synopsis

-
-

x2

+
+

x2

Synopsis

diff --git a/test-files/golden-tests/out-of-line-record-def.html b/test-files/golden-tests/out-of-line-record-def.html index 8e47f91d6a..ff36b8cb14 100644 --- a/test-files/golden-tests/out-of-line-record-def.html +++ b/test-files/golden-tests/out-of-line-record-def.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -23,9 +23,9 @@

Namespaces

-
-

N

+
+

N

Types

@@ -41,9 +41,9 @@

Types

-
-

N::S

+
+

N::S

Synopsis

diff --git a/test-files/golden-tests/overloaded-op-1.html b/test-files/golden-tests/overloaded-op-1.html index 23e22b2c31..6adde92296 100644 --- a/test-files/golden-tests/overloaded-op-1.html +++ b/test-files/golden-tests/overloaded-op-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

T

+
+

T

Synopsis

@@ -53,9 +53,9 @@

Member Functions

-
-

T::operator+

+
+

T::operator+

Synopsis

diff --git a/test-files/golden-tests/overloaded-op-2.html b/test-files/golden-tests/overloaded-op-2.html index ce2029a0fa..c325faf109 100644 --- a/test-files/golden-tests/overloaded-op-2.html +++ b/test-files/golden-tests/overloaded-op-2.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

T

+
+

T

Synopsis

@@ -53,9 +53,9 @@

Member Functions

-
-

T::operator+

+
+

T::operator+

Synopsis

diff --git a/test-files/golden-tests/para-1.html b/test-files/golden-tests/para-1.html index da0a1029c5..853d2c6302 100644 --- a/test-files/golden-tests/para-1.html +++ b/test-files/golden-tests/para-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -31,9 +31,9 @@

Functions

-
-

f1

+
+

f1

Synopsis

@@ -47,9 +47,9 @@

Synopsis

-
-

f2

+
+

f2

Synopsis

@@ -63,9 +63,9 @@

Synopsis

-
-

f3

+
+

f3

Synopsis

@@ -79,9 +79,9 @@

Synopsis

-
-

f4

+
+

f4

brief

diff --git a/test-files/golden-tests/para-2.html b/test-files/golden-tests/para-2.html index 8e4e1671fb..cb06f0f439 100644 --- a/test-files/golden-tests/para-2.html +++ b/test-files/golden-tests/para-2.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -25,9 +25,9 @@

Functions

-
-

f1

+
+

f1

brief

diff --git a/test-files/golden-tests/param-direction.html b/test-files/golden-tests/param-direction.html index 60a4b2a4c5..8940b22876 100644 --- a/test-files/golden-tests/param-direction.html +++ b/test-files/golden-tests/param-direction.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -41,9 +41,9 @@

Functions

-
-

f

+
+

f

Synopsis

@@ -74,9 +74,9 @@

Parameters

-
-

g

+
+

g

Synopsis

@@ -113,9 +113,9 @@

Parameters

-
-

h

+
+

h

Synopsis

@@ -152,9 +152,9 @@

Parameters

-
-

i

+
+

i

Synopsis

@@ -191,9 +191,9 @@

Parameters

-
-

j

+
+

j

Synopsis

@@ -230,9 +230,9 @@

Parameters

-
-

k

+
+

k

Synopsis

@@ -274,9 +274,9 @@

Parameters

-
-

l

+
+

l

Synopsis

@@ -319,9 +319,9 @@

Parameters

-
-

m

+
+

m

Synopsis

@@ -358,9 +358,9 @@

Parameters

-
-

n

+
+

n

Synopsis

@@ -391,9 +391,9 @@

Parameters

-
-

o

+
+

o

Synopsis

diff --git a/test-files/golden-tests/param.html b/test-files/golden-tests/param.html index 0aeb5694a7..e8e3d0e0b2 100644 --- a/test-files/golden-tests/param.html +++ b/test-files/golden-tests/param.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -29,9 +29,9 @@

Functions

-
-

f

+
+

f

Synopsis

@@ -62,9 +62,9 @@

Parameters

-
-

g

+
+

g

Synopsis

@@ -101,9 +101,9 @@

Parameters

-
-

h

+
+

h

Synopsis

@@ -145,9 +145,9 @@

Parameters

-
-

i

+
+

i

Synopsis

diff --git a/test-files/golden-tests/pre-post.html b/test-files/golden-tests/pre-post.html index 4a231df447..62ee195a92 100644 --- a/test-files/golden-tests/pre-post.html +++ b/test-files/golden-tests/pre-post.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -23,9 +23,9 @@

Functions

-
-

f

+
+

f

Synopsis

diff --git a/test-files/golden-tests/record-1.html b/test-files/golden-tests/record-1.html index 05d2f9f0ba..fe194b411f 100644 --- a/test-files/golden-tests/record-1.html +++ b/test-files/golden-tests/record-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

T

+
+

T

Synopsis

@@ -95,9 +95,9 @@

Protected Member Functions

-
-

T::U1

+
+

T::U1

Synopsis

@@ -110,9 +110,9 @@

Synopsis

-
-

T::U2

+
+

T::U2

Synopsis

@@ -125,9 +125,9 @@

Synopsis

-
-

T::f1

+
+

T::f1

Synopsis

@@ -141,9 +141,9 @@

Synopsis

-
-

T::f2

+
+

T::f2

Synopsis

@@ -157,9 +157,9 @@

Synopsis

-
-

T::f3

+
+

T::f3

Synopsis

@@ -173,9 +173,9 @@

Synopsis

-
-

T::g1

+
+

T::g1

brief-g1

@@ -202,9 +202,9 @@

Description

-
-

T::g2

+
+

T::g2

brief-g2

@@ -224,9 +224,9 @@

Synopsis

-
-

T::g3

+
+

T::g3

brief-g3

diff --git a/test-files/golden-tests/record-access.html b/test-files/golden-tests/record-access.html index 302c3383f2..f463bbc294 100644 --- a/test-files/golden-tests/record-access.html +++ b/test-files/golden-tests/record-access.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -27,9 +27,9 @@

Types

-
-

S0

+
+

S0

Synopsis

@@ -83,9 +83,9 @@

Private Member Functions

-
-

S0::f0

+
+

S0::f0

Synopsis

@@ -99,9 +99,9 @@

Synopsis

-
-

S0::f1

+
+

S0::f1

Synopsis

@@ -115,9 +115,9 @@

Synopsis

-
-

S0::f2

+
+

S0::f2

Synopsis

@@ -131,9 +131,9 @@

Synopsis

-
-

C0

+
+

C0

Synopsis

@@ -187,9 +187,9 @@

Private Member Functions

-
-

C0::f0

+
+

C0::f0

Synopsis

@@ -203,9 +203,9 @@

Synopsis

-
-

C0::f1

+
+

C0::f1

Synopsis

@@ -219,9 +219,9 @@

Synopsis

-
-

C0::f2

+
+

C0::f2

Synopsis

@@ -235,9 +235,9 @@

Synopsis

-
-

U0

+
+

U0

Synopsis

@@ -291,9 +291,9 @@

Private Member Functions

-
-

U0::f0

+
+

U0::f0

Synopsis

@@ -307,9 +307,9 @@

Synopsis

-
-

U0::f1

+
+

U0::f1

Synopsis

@@ -323,9 +323,9 @@

Synopsis

-
-

U0::f2

+
+

U0::f2

Synopsis

diff --git a/test-files/golden-tests/record-data.html b/test-files/golden-tests/record-data.html index 107b59b620..373a456e5a 100644 --- a/test-files/golden-tests/record-data.html +++ b/test-files/golden-tests/record-data.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -31,9 +31,9 @@

Types

-
-

T

+
+

T

Synopsis

@@ -69,9 +69,9 @@

Data Members

-
-

T::i

+
+

T::i

Synopsis

@@ -84,9 +84,9 @@

Synopsis

-
-

T::j

+
+

T::j

Synopsis

@@ -99,9 +99,9 @@

Synopsis

-
-

T::k

+
+

T::k

Synopsis

@@ -115,9 +115,9 @@

Synopsis

-
-

T::l

+
+

T::l

Synopsis

@@ -130,9 +130,9 @@

Synopsis

-
-

T::m

+
+

T::m

Synopsis

@@ -145,9 +145,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -175,9 +175,9 @@

Data Members

-
-

U::t

+
+

U::t

Synopsis

@@ -190,9 +190,9 @@

Synopsis

-
-

V

+
+

V

Synopsis

@@ -235,9 +235,9 @@

Private Data Members

-
-

V::i

+
+

V::i

Synopsis

@@ -250,9 +250,9 @@

Synopsis

-
-

V::j

+
+

V::j

Synopsis

@@ -265,9 +265,9 @@

Synopsis

-
-

V::k

+
+

V::k

Synopsis

@@ -280,9 +280,9 @@

Synopsis

-
-

W

+
+

W

Synopsis

@@ -310,9 +310,9 @@

Data Members

-
-

W::buf

+
+

W::buf

Synopsis

@@ -325,9 +325,9 @@

Synopsis

-
-

X

+
+

X

Synopsis

@@ -379,9 +379,9 @@

Data Members

-
-

X::Q

+
+

X::Q

Synopsis

@@ -394,9 +394,9 @@

Synopsis

-
-

X::x0

+
+

X::x0

Synopsis

@@ -409,9 +409,9 @@

Synopsis

-
-

X::x1

+
+

X::x1

Synopsis

@@ -424,9 +424,9 @@

Synopsis

-
-

X::x2

+
+

X::x2

Synopsis

@@ -439,9 +439,9 @@

Synopsis

-
-

X::x3

+
+

X::x3

Synopsis

@@ -454,9 +454,9 @@

Synopsis

-
-

X::x4

+
+

X::x4

Synopsis

diff --git a/test-files/golden-tests/record-inheritance.html b/test-files/golden-tests/record-inheritance.html index 6a1162af3b..b7591b5187 100644 --- a/test-files/golden-tests/record-inheritance.html +++ b/test-files/golden-tests/record-inheritance.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -53,9 +53,9 @@

Types

-
-

S0

+
+

S0

Synopsis

@@ -70,9 +70,9 @@

Synopsis

-
-

C0

+
+

C0

Synopsis

@@ -87,9 +87,9 @@

Synopsis

-
-

U0

+
+

U0

Synopsis

@@ -104,9 +104,9 @@

Synopsis

-
-

S1

+
+

S1

Synopsis

@@ -121,9 +121,9 @@

Synopsis

-
-

S2

+
+

S2

Synopsis

@@ -139,9 +139,9 @@

Synopsis

-
-

S3

+
+

S3

Synopsis

@@ -157,9 +157,9 @@

Synopsis

-
-

S4

+
+

S4

Synopsis

@@ -176,9 +176,9 @@

Synopsis

-
-

C1

+
+

C1

Synopsis

@@ -194,9 +194,9 @@

Synopsis

-
-

C2

+
+

C2

Synopsis

@@ -212,9 +212,9 @@

Synopsis

-
-

C3

+
+

C3

Synopsis

@@ -230,9 +230,9 @@

Synopsis

-
-

C4

+
+

C4

Synopsis

@@ -248,9 +248,9 @@

Synopsis

-
-

C5

+
+

C5

Synopsis

@@ -266,9 +266,9 @@

Synopsis

-
-

C6

+
+

C6

Synopsis

@@ -284,9 +284,9 @@

Synopsis

-
-

C7

+
+

C7

Synopsis

@@ -303,9 +303,9 @@

Synopsis

-
-

S5

+
+

S5

Synopsis

@@ -322,9 +322,9 @@

Synopsis

-
-

S6

+
+

S6

Synopsis

diff --git a/test-files/golden-tests/ref.html b/test-files/golden-tests/ref.html index 2221f54978..20ff3ad765 100644 --- a/test-files/golden-tests/ref.html +++ b/test-files/golden-tests/ref.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -57,9 +57,9 @@

Functions

-
-

f0

+
+

f0

Synopsis

@@ -73,9 +73,9 @@

Synopsis

-
-

A

+
+

A

Types

@@ -112,9 +112,9 @@

Functions

-
-

A::f1

+
+

A::f1

See f0

@@ -141,9 +141,9 @@

Description

-
-

A::B

+
+

A::B

See f1

@@ -187,9 +187,9 @@

Description

-
-

A::B::f2

+
+

A::B::f2

Synopsis

@@ -203,9 +203,9 @@

Synopsis

-
-

A::C

+
+

A::C

Synopsis

@@ -235,9 +235,9 @@

Member Functions

-
-

A::C::f3

+
+

A::C::f3

Synopsis

@@ -251,9 +251,9 @@

Synopsis

-
-

A::C::f4

+
+

A::C::f4

Synopsis

@@ -267,9 +267,9 @@

Synopsis

-
-

A::D

+
+

A::D

Synopsis

@@ -314,9 +314,9 @@

Member Functions

-
-

A::D::f4

+
+

A::D::f4

Synopsis

@@ -330,9 +330,9 @@

Synopsis

-
-

A::D::E

+
+

A::D::E

See f3

@@ -362,9 +362,9 @@

Description

-
-

f5

+
+

f5

See A::f1

@@ -391,9 +391,9 @@

Description

-
-

F

+
+

F

Synopsis

@@ -497,9 +497,9 @@

Member Functions

-
-

F::operator~

+
+

F::operator~

Synopsis

@@ -513,9 +513,9 @@

Synopsis

-
-

F::operator,

+
+

F::operator,

Synopsis

@@ -529,9 +529,9 @@

Synopsis

-
-

F::operator()

+
+

F::operator()

Synopsis

@@ -545,9 +545,9 @@

Synopsis

-
-

F::operator[]

+
+

F::operator[]

Synopsis

@@ -561,9 +561,9 @@

Synopsis

-
-

F::operator+

+
+

F::operator+

Synopsis

@@ -577,9 +577,9 @@

Synopsis

-
-

F::operator++

+
+

F::operator++

Synopsis

@@ -593,9 +593,9 @@

Synopsis

-
-

F::operator+=

+
+

F::operator+=

Synopsis

@@ -609,9 +609,9 @@

Synopsis

-
-

F::operator&

+
+

F::operator&

Synopsis

@@ -625,9 +625,9 @@

Synopsis

-
-

F::operator&&

+
+

F::operator&&

Synopsis

@@ -641,9 +641,9 @@

Synopsis

-
-

F::operator&=

+
+

F::operator&=

Synopsis

@@ -657,9 +657,9 @@

Synopsis

-
-

F::operator|

+
+

F::operator|

Synopsis

@@ -673,9 +673,9 @@

Synopsis

-
-

F::operator||

+
+

F::operator||

Synopsis

@@ -689,9 +689,9 @@

Synopsis

-
-

F::operator|=

+
+

F::operator|=

Synopsis

@@ -705,9 +705,9 @@

Synopsis

-
-

F::operator-

+
+

F::operator-

Synopsis

@@ -721,9 +721,9 @@

Synopsis

-
-

F::operator--

+
+

F::operator--

Synopsis

@@ -737,9 +737,9 @@

Synopsis

-
-

F::operator-=

+
+

F::operator-=

Synopsis

@@ -753,9 +753,9 @@

Synopsis

-
-

F::operator->

+
+

F::operator->

Synopsis

@@ -769,9 +769,9 @@

Synopsis

-
-

F::operator->*

+
+

F::operator->*

Synopsis

@@ -785,9 +785,9 @@

Synopsis

-
-

F::operator<

+
+

F::operator<

Synopsis

@@ -801,9 +801,9 @@

Synopsis

-
-

F::operator<<

+
+

F::operator<<

Synopsis

@@ -817,9 +817,9 @@

Synopsis

-
-

F::operator<<=

+
+

F::operator<<=

Synopsis

@@ -833,9 +833,9 @@

Synopsis

-
-

F::operator<=

+
+

F::operator<=

Synopsis

@@ -849,9 +849,9 @@

Synopsis

-
-

F::operator<=>

+
+

F::operator<=>

Synopsis

@@ -865,9 +865,9 @@

Synopsis

-
-

F::operator>

+
+

F::operator>

Synopsis

@@ -881,9 +881,9 @@

Synopsis

-
-

F::operator>>

+
+

F::operator>>

Synopsis

@@ -897,9 +897,9 @@

Synopsis

-
-

F::operator>>=

+
+

F::operator>>=

Synopsis

@@ -913,9 +913,9 @@

Synopsis

-
-

F::operator>=

+
+

F::operator>=

Synopsis

@@ -929,9 +929,9 @@

Synopsis

-
-

F::operator*

+
+

F::operator*

Synopsis

@@ -945,9 +945,9 @@

Synopsis

-
-

F::operator*=

+
+

F::operator*=

Synopsis

@@ -961,9 +961,9 @@

Synopsis

-
-

F::operator%

+
+

F::operator%

Synopsis

@@ -977,9 +977,9 @@

Synopsis

-
-

F::operator%=

+
+

F::operator%=

Synopsis

@@ -993,9 +993,9 @@

Synopsis

-
-

F::operator/

+
+

F::operator/

Synopsis

@@ -1009,9 +1009,9 @@

Synopsis

-
-

F::operator/=

+
+

F::operator/=

Synopsis

@@ -1025,9 +1025,9 @@

Synopsis

-
-

F::operator^

+
+

F::operator^

Synopsis

@@ -1041,9 +1041,9 @@

Synopsis

-
-

F::operator^=

+
+

F::operator^=

Synopsis

@@ -1057,9 +1057,9 @@

Synopsis

-
-

F::operator=

+
+

F::operator=

Synopsis

@@ -1073,9 +1073,9 @@

Synopsis

-
-

F::operator==

+
+

F::operator==

Synopsis

@@ -1089,9 +1089,9 @@

Synopsis

-
-

F::operator!

+
+

F::operator!

Synopsis

@@ -1105,9 +1105,9 @@

Synopsis

-
-

F::operator!=

+
+

F::operator!=

Synopsis

@@ -1121,9 +1121,9 @@

Synopsis

-
-

f6

+
+

f6

See F::operator~

diff --git a/test-files/golden-tests/requires-clause.html b/test-files/golden-tests/requires-clause.html index 82b9f5b07e..48138fc90a 100644 --- a/test-files/golden-tests/requires-clause.html +++ b/test-files/golden-tests/requires-clause.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -36,9 +36,9 @@

Functions

-
-

f

+
+

f

Synopsis

@@ -62,9 +62,9 @@

Synopsis

» more...
-
-

f

+
+

f

Synopsis

@@ -79,9 +79,9 @@

Synopsis

-
-

f

+
+

f

Synopsis

@@ -96,9 +96,9 @@

Synopsis

-
-

g

+
+

g

Synopsis

@@ -122,9 +122,9 @@

Synopsis

» more...
-
-

g

+
+

g

Synopsis

@@ -139,9 +139,9 @@

Synopsis

-
-

g

+
+

g

Synopsis

@@ -156,9 +156,9 @@

Synopsis

-
-

A

+
+

A

Synopsis

diff --git a/test-files/golden-tests/spec-mem-implicit-instantiation.html b/test-files/golden-tests/spec-mem-implicit-instantiation.html index 53c2d6788d..c44346cea5 100644 --- a/test-files/golden-tests/spec-mem-implicit-instantiation.html +++ b/test-files/golden-tests/spec-mem-implicit-instantiation.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -25,9 +25,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -71,9 +71,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

@@ -87,9 +87,9 @@

Synopsis

-
-

A::B

+
+

A::B

Synopsis

@@ -118,9 +118,9 @@

Member Functions

-
-

A::B::g

+
+

A::B::g

Synopsis

@@ -134,9 +134,9 @@

Synopsis

-
-

A::C

+
+

A::C

Synopsis

@@ -165,9 +165,9 @@

Member Functions

-
-

A::C::h

+
+

A::C::h

Synopsis

@@ -181,9 +181,9 @@

Synopsis

-
-

D

+
+

D

Synopsis

@@ -211,9 +211,9 @@

Types

-
-

D::E

+
+

D::E

Synopsis

@@ -242,9 +242,9 @@

Member Functions

-
-

D::E::k

+
+

D::E::k

Synopsis

diff --git a/test-files/golden-tests/static-data-def-constexpr.html b/test-files/golden-tests/static-data-def-constexpr.html index 601275963d..24001cf0a3 100644 --- a/test-files/golden-tests/static-data-def-constexpr.html +++ b/test-files/golden-tests/static-data-def-constexpr.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -25,9 +25,9 @@

Types

-
-

S

+
+

S

Synopsis

@@ -55,9 +55,9 @@

Static Data Members

-
-

S::s

+
+

S::s

Synopsis

@@ -72,9 +72,9 @@

Synopsis

-
-

T

+
+

T

Synopsis

@@ -102,9 +102,9 @@

Static Data Members

-
-

T::t

+
+

T::t

Synopsis

diff --git a/test-files/golden-tests/static-data-def.html b/test-files/golden-tests/static-data-def.html index 5b1b370a70..6a1b7f96e1 100644 --- a/test-files/golden-tests/static-data-def.html +++ b/test-files/golden-tests/static-data-def.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -38,9 +38,9 @@

Functions

-
-

A

+
+

A

Synopsis

@@ -83,9 +83,9 @@

Static Data Members

-
-

A::v0

+
+

A::v0

Synopsis

@@ -99,9 +99,9 @@

Synopsis

-
-

A::v1

+
+

A::v1

Synopsis

@@ -115,9 +115,9 @@

Synopsis

-
-

A::v2

+
+

A::v2

Synopsis

@@ -132,9 +132,9 @@

Synopsis

-
-

A::v3

+
+

A::v3

Synopsis

@@ -148,9 +148,9 @@

Synopsis

-
-

A::v4

+
+

A::v4

Synopsis

@@ -164,9 +164,9 @@

Synopsis

-
-

A::v5

+
+

A::v5

Synopsis

@@ -180,9 +180,9 @@

Synopsis

-
-

A::v6

+
+

A::v6

Synopsis

@@ -196,9 +196,9 @@

Synopsis

-
-

A::v7

+
+

A::v7

Synopsis

@@ -213,9 +213,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

@@ -245,9 +245,9 @@

Static Data Members

-
-

B::x0

+
+

B::x0

Synopsis

@@ -262,9 +262,9 @@

Synopsis

-
-

B::x1

+
+

B::x1

Synopsis

@@ -280,9 +280,9 @@

Synopsis

-
-

f

+
+

f

Synopsis

diff --git a/test-files/golden-tests/static-data-template.html b/test-files/golden-tests/static-data-template.html index 3357324942..09ef4c7d9a 100644 --- a/test-files/golden-tests/static-data-template.html +++ b/test-files/golden-tests/static-data-template.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -58,9 +58,9 @@

Static Data Members

-
-

A::x

+
+

A::x

Synopsis

@@ -78,9 +78,9 @@

Synopsis

-
-

A::x<U*, T>

+
+

A::x<U*, T>

Synopsis

@@ -96,9 +96,9 @@

Synopsis

-
-

A::x<T, long>

+
+

A::x<T, long>

Synopsis

diff --git a/test-files/golden-tests/temp/c_mct_expl_inline.html b/test-files/golden-tests/temp/c_mct_expl_inline.html index fcad55951a..c863997763 100644 --- a/test-files/golden-tests/temp/c_mct_expl_inline.html +++ b/test-files/golden-tests/temp/c_mct_expl_inline.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -55,9 +55,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -86,9 +86,9 @@

Member Functions

-
-

A::B::f

+
+

A::B::f

Synopsis

@@ -102,9 +102,9 @@

Synopsis

-
-

A::B<int>

+
+

A::B<int>

Synopsis

@@ -133,9 +133,9 @@

Member Functions

-
-

A::B<int>::g

+
+

A::B<int>::g

Synopsis

diff --git a/test-files/golden-tests/temp/c_mct_expl_outside.html b/test-files/golden-tests/temp/c_mct_expl_outside.html index 2215a40836..041b5c7fe6 100644 --- a/test-files/golden-tests/temp/c_mct_expl_outside.html +++ b/test-files/golden-tests/temp/c_mct_expl_outside.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -55,9 +55,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -86,9 +86,9 @@

Member Functions

-
-

A::B::f

+
+

A::B::f

Synopsis

@@ -102,9 +102,9 @@

Synopsis

-
-

A::B<int>

+
+

A::B<int>

Synopsis

@@ -133,9 +133,9 @@

Member Functions

-
-

A::B<int>::g

+
+

A::B<int>::g

Synopsis

diff --git a/test-files/golden-tests/temp/c_mft_expl_inline.html b/test-files/golden-tests/temp/c_mft_expl_inline.html index 1afe9d3cd1..8cad73f481 100644 --- a/test-files/golden-tests/temp/c_mft_expl_inline.html +++ b/test-files/golden-tests/temp/c_mft_expl_inline.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -52,9 +52,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

@@ -78,9 +78,9 @@

Synopsis

» more...
-
-

A::f

+
+

A::f

Synopsis

@@ -95,9 +95,9 @@

Synopsis

-
-

A::f<int>

+
+

A::f<int>

Synopsis

diff --git a/test-files/golden-tests/temp/c_mft_expl_outside.html b/test-files/golden-tests/temp/c_mft_expl_outside.html index 7d2aa714e8..fcf2cfee8d 100644 --- a/test-files/golden-tests/temp/c_mft_expl_outside.html +++ b/test-files/golden-tests/temp/c_mft_expl_outside.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -52,9 +52,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

@@ -78,9 +78,9 @@

Synopsis

» more...
-
-

A::f

+
+

A::f

Synopsis

@@ -95,9 +95,9 @@

Synopsis

-
-

A::f<int>

+
+

A::f<int>

Synopsis

diff --git a/test-files/golden-tests/temp/ct_expl.html b/test-files/golden-tests/temp/ct_expl.html index 6da5022e4a..e6abc6e16f 100644 --- a/test-files/golden-tests/temp/ct_expl.html +++ b/test-files/golden-tests/temp/ct_expl.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -25,9 +25,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -56,9 +56,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

@@ -72,9 +72,9 @@

Synopsis

-
-

A<int>

+
+

A<int>

Synopsis

@@ -103,9 +103,9 @@

Member Functions

-
-

A<int>::g

+
+

A<int>::g

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mc.html b/test-files/golden-tests/temp/ct_mc.html index be527b0bb8..37ecdde64a 100644 --- a/test-files/golden-tests/temp/ct_mc.html +++ b/test-files/golden-tests/temp/ct_mc.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -84,9 +84,9 @@

Member Functions

-
-

A::B::f

+
+

A::B::f

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mc_expl_outside.html b/test-files/golden-tests/temp/ct_mc_expl_outside.html index 2957a27c29..1b4141a587 100644 --- a/test-files/golden-tests/temp/ct_mc_expl_outside.html +++ b/test-files/golden-tests/temp/ct_mc_expl_outside.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -84,9 +84,9 @@

Member Functions

-
-

A::B::f

+
+

A::B::f

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mct.html b/test-files/golden-tests/temp/ct_mct.html index 6aebdfb02d..1be0b1cba9 100644 --- a/test-files/golden-tests/temp/ct_mct.html +++ b/test-files/golden-tests/temp/ct_mct.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -85,9 +85,9 @@

Member Functions

-
-

A::B::f

+
+

A::B::f

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mct_expl_inline.html b/test-files/golden-tests/temp/ct_mct_expl_inline.html index 9a184745d0..50cd529a33 100644 --- a/test-files/golden-tests/temp/ct_mct_expl_inline.html +++ b/test-files/golden-tests/temp/ct_mct_expl_inline.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -56,9 +56,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -87,9 +87,9 @@

Member Functions

-
-

A::B::f

+
+

A::B::f

Synopsis

@@ -103,9 +103,9 @@

Synopsis

-
-

A::B<int>

+
+

A::B<int>

Synopsis

@@ -134,9 +134,9 @@

Member Functions

-
-

A::B<int>::g

+
+

A::B<int>::g

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mct_expl_outside.html b/test-files/golden-tests/temp/ct_mct_expl_outside.html index 10eb9ac19b..54129069cb 100644 --- a/test-files/golden-tests/temp/ct_mct_expl_outside.html +++ b/test-files/golden-tests/temp/ct_mct_expl_outside.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Types

-
-

A::B

+
+

A::B

Synopsis

@@ -85,9 +85,9 @@

Member Functions

-
-

A::B::f

+
+

A::B::f

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mf.html b/test-files/golden-tests/temp/ct_mf.html index bbd106cdae..8933e1348e 100644 --- a/test-files/golden-tests/temp/ct_mf.html +++ b/test-files/golden-tests/temp/ct_mf.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mf_expl_outside.html b/test-files/golden-tests/temp/ct_mf_expl_outside.html index 2f3ee8de89..ff27c6971b 100644 --- a/test-files/golden-tests/temp/ct_mf_expl_outside.html +++ b/test-files/golden-tests/temp/ct_mf_expl_outside.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mft.html b/test-files/golden-tests/temp/ct_mft.html index e24b1578fa..678eee787f 100644 --- a/test-files/golden-tests/temp/ct_mft.html +++ b/test-files/golden-tests/temp/ct_mft.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mft_expl_inline.html b/test-files/golden-tests/temp/ct_mft_expl_inline.html index a4fe3b4d73..eb45d80bd2 100644 --- a/test-files/golden-tests/temp/ct_mft_expl_inline.html +++ b/test-files/golden-tests/temp/ct_mft_expl_inline.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -53,9 +53,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

@@ -79,9 +79,9 @@

Synopsis

» more...
-
-

A::f

+
+

A::f

Synopsis

@@ -96,9 +96,9 @@

Synopsis

-
-

A::f<int>

+
+

A::f<int>

Synopsis

diff --git a/test-files/golden-tests/temp/ct_mft_expl_outside.html b/test-files/golden-tests/temp/ct_mft_expl_outside.html index b6271798f8..b28198cc3e 100644 --- a/test-files/golden-tests/temp/ct_mft_expl_outside.html +++ b/test-files/golden-tests/temp/ct_mft_expl_outside.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -23,9 +23,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -54,9 +54,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

diff --git a/test-files/golden-tests/temp/ft_expl.html b/test-files/golden-tests/temp/ft_expl.html index ab1ee57267..fdbb6e92d0 100644 --- a/test-files/golden-tests/temp/ft_expl.html +++ b/test-files/golden-tests/temp/ft_expl.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -22,9 +22,9 @@

Functions

-
-

f

+
+

f

Synopsis

@@ -48,9 +48,9 @@

Synopsis

» more...
-
-

f

+
+

f

Synopsis

@@ -65,9 +65,9 @@

Synopsis

-
-

f<int>

+
+

f<int>

Synopsis

diff --git a/test-files/golden-tests/type-resolution.html b/test-files/golden-tests/type-resolution.html index 9d3729ee4f..27caea91e2 100644 --- a/test-files/golden-tests/type-resolution.html +++ b/test-files/golden-tests/type-resolution.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -132,9 +132,9 @@

Functions

-
-

A

+
+

A

Synopsis

@@ -149,9 +149,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

@@ -169,9 +169,9 @@

Synopsis

-
-

C

+
+

C

Synopsis

@@ -184,9 +184,9 @@

Synopsis

-
-

D

+
+

D

Synopsis

@@ -199,9 +199,9 @@

Synopsis

-
-

E

+
+

E

Synopsis

@@ -215,9 +215,9 @@

Synopsis

-
-

f0

+
+

f0

Synopsis

@@ -231,9 +231,9 @@

Synopsis

-
-

f1

+
+

f1

Synopsis

@@ -247,9 +247,9 @@

Synopsis

-
-

f2

+
+

f2

Synopsis

@@ -263,9 +263,9 @@

Synopsis

-
-

f3

+
+

f3

Synopsis

@@ -279,9 +279,9 @@

Synopsis

-
-

f4

+
+

f4

Synopsis

@@ -295,9 +295,9 @@

Synopsis

-
-

f5

+
+

f5

Synopsis

@@ -311,9 +311,9 @@

Synopsis

-
-

f6

+
+

f6

Synopsis

@@ -327,9 +327,9 @@

Synopsis

-
-

f7

+
+

f7

Synopsis

@@ -343,9 +343,9 @@

Synopsis

-
-

f8

+
+

f8

Synopsis

@@ -359,9 +359,9 @@

Synopsis

-
-

g0

+
+

g0

Synopsis

@@ -375,9 +375,9 @@

Synopsis

-
-

g1

+
+

g1

Synopsis

@@ -391,9 +391,9 @@

Synopsis

-
-

g2

+
+

g2

Synopsis

@@ -407,9 +407,9 @@

Synopsis

-
-

g3

+
+

g3

Synopsis

@@ -423,9 +423,9 @@

Synopsis

-
-

g4

+
+

g4

Synopsis

@@ -439,9 +439,9 @@

Synopsis

-
-

g5

+
+

g5

Synopsis

@@ -455,9 +455,9 @@

Synopsis

-
-

g6

+
+

g6

Synopsis

@@ -471,9 +471,9 @@

Synopsis

-
-

g7

+
+

g7

Synopsis

@@ -487,9 +487,9 @@

Synopsis

-
-

g8

+
+

g8

Synopsis

@@ -503,9 +503,9 @@

Synopsis

-
-

h0

+
+

h0

Synopsis

@@ -519,9 +519,9 @@

Synopsis

-
-

h1

+
+

h1

Synopsis

@@ -535,9 +535,9 @@

Synopsis

-
-

h2

+
+

h2

Synopsis

@@ -551,9 +551,9 @@

Synopsis

-
-

h3

+
+

h3

Synopsis

@@ -567,9 +567,9 @@

Synopsis

-
-

h4

+
+

h4

Synopsis

@@ -583,9 +583,9 @@

Synopsis

-
-

h5

+
+

h5

Synopsis

@@ -599,9 +599,9 @@

Synopsis

-
-

h6

+
+

h6

Synopsis

@@ -615,9 +615,9 @@

Synopsis

-
-

h7

+
+

h7

Synopsis

@@ -631,9 +631,9 @@

Synopsis

-
-

h8

+
+

h8

Synopsis

@@ -647,9 +647,9 @@

Synopsis

-
-

i0

+
+

i0

Synopsis

@@ -663,9 +663,9 @@

Synopsis

-
-

i1

+
+

i1

Synopsis

@@ -679,9 +679,9 @@

Synopsis

-
-

i2

+
+

i2

Synopsis

@@ -695,9 +695,9 @@

Synopsis

-
-

i3

+
+

i3

Synopsis

@@ -711,9 +711,9 @@

Synopsis

-
-

i4

+
+

i4

Synopsis

@@ -727,9 +727,9 @@

Synopsis

-
-

i5

+
+

i5

Synopsis

@@ -743,9 +743,9 @@

Synopsis

-
-

i6

+
+

i6

Synopsis

@@ -759,9 +759,9 @@

Synopsis

-
-

i7

+
+

i7

Synopsis

@@ -775,9 +775,9 @@

Synopsis

-
-

i8

+
+

i8

Synopsis

@@ -791,9 +791,9 @@

Synopsis

-
-

j0

+
+

j0

Synopsis

@@ -807,9 +807,9 @@

Synopsis

-
-

j1

+
+

j1

Synopsis

@@ -823,9 +823,9 @@

Synopsis

-
-

j2

+
+

j2

Synopsis

@@ -839,9 +839,9 @@

Synopsis

-
-

j3

+
+

j3

Synopsis

@@ -855,9 +855,9 @@

Synopsis

-
-

j4

+
+

j4

Synopsis

@@ -871,9 +871,9 @@

Synopsis

-
-

j5

+
+

j5

Synopsis

@@ -887,9 +887,9 @@

Synopsis

-
-

j6

+
+

j6

Synopsis

@@ -903,9 +903,9 @@

Synopsis

-
-

j7

+
+

j7

Synopsis

@@ -919,9 +919,9 @@

Synopsis

-
-

j8

+
+

j8

Synopsis

diff --git a/test-files/golden-tests/union.html b/test-files/golden-tests/union.html index 6c12dcbc2b..2065400570 100644 --- a/test-files/golden-tests/union.html +++ b/test-files/golden-tests/union.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -25,9 +25,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -61,9 +61,9 @@

Data Members

-
-

A::x

+
+

A::x

Synopsis

@@ -76,9 +76,9 @@

Synopsis

-
-

A::y

+
+

A::y

Synopsis

@@ -91,9 +91,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

@@ -129,9 +129,9 @@

Data Members

-
-

B::x

+
+

B::x

Synopsis

@@ -144,9 +144,9 @@

Synopsis

-
-

B::y

+
+

B::y

Synopsis

@@ -159,9 +159,9 @@

Synopsis

-
-

B::z

+
+

B::z

Synopsis

diff --git a/test-files/golden-tests/using-1.html b/test-files/golden-tests/using-1.html index 3cc06b3b36..3c6d3f02b1 100644 --- a/test-files/golden-tests/using-1.html +++ b/test-files/golden-tests/using-1.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -40,9 +40,9 @@

Using Directives

-
-

LongName

+
+

LongName

diff --git a/test-files/golden-tests/using-2.html b/test-files/golden-tests/using-2.html index d755d33a7e..476683e086 100644 --- a/test-files/golden-tests/using-2.html +++ b/test-files/golden-tests/using-2.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Namespaces

@@ -23,9 +23,9 @@

Namespaces

-
-

LongName

+
+

LongName

Types

@@ -43,9 +43,9 @@

Types

-
-

LongName::S1

+
+

LongName::S1

Synopsis

@@ -60,9 +60,9 @@

Synopsis

-
-

LongName::S2

+
+

LongName::S2

Synopsis

@@ -77,9 +77,9 @@

Synopsis

-
-

S1

+
+

S1

Synopsis

@@ -108,9 +108,9 @@

Introduced Symbols

-
-

S2

+
+

S2

Synopsis

diff --git a/test-files/golden-tests/using-3.html b/test-files/golden-tests/using-3.html index d2dc78a768..a12eaa7d0d 100644 --- a/test-files/golden-tests/using-3.html +++ b/test-files/golden-tests/using-3.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -27,9 +27,9 @@

Types

-
-

A

+
+

A

Synopsis

@@ -57,9 +57,9 @@

Member Functions

-
-

A::f

+
+

A::f

Synopsis

@@ -73,9 +73,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

@@ -103,9 +103,9 @@

Member Functions

-
-

B::f

+
+

B::f

Synopsis

@@ -119,9 +119,9 @@

Synopsis

-
-

C

+
+

C

Synopsis

@@ -165,9 +165,9 @@

Using Declarations

-
-

C::f

+
+

C::f

Synopsis

@@ -196,9 +196,9 @@

Introduced Symbols

-
-

C::f

+
+

C::f

Synopsis

diff --git a/test-files/golden-tests/utf-8.html b/test-files/golden-tests/utf-8.html index 575876b496..d53a0ecc8d 100644 --- a/test-files/golden-tests/utf-8.html +++ b/test-files/golden-tests/utf-8.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Functions

@@ -23,9 +23,9 @@

Functions

-
-

Христос_воскрес

+
+

Христос_воскрес

Synopsis

diff --git a/test-files/golden-tests/var-template.html b/test-files/golden-tests/var-template.html index 8d026684cc..fea5e1e1aa 100644 --- a/test-files/golden-tests/var-template.html +++ b/test-files/golden-tests/var-template.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -40,9 +40,9 @@

Variables

-
-

A

+
+

A

Synopsis

@@ -56,9 +56,9 @@

Synopsis

-
-

A<void>

+
+

A<void>

Synopsis

@@ -72,9 +72,9 @@

Synopsis

-
-

A<T&>

+
+

A<T&>

Synopsis

@@ -88,9 +88,9 @@

Synopsis

-
-

B

+
+

B

Synopsis

@@ -122,9 +122,9 @@

Static Data Members

-
-

B::C

+
+

B::C

Synopsis

@@ -139,9 +139,9 @@

Synopsis

-
-

B::C<int>

+
+

B::C<int>

Synopsis

@@ -156,9 +156,9 @@

Synopsis

-
-

B::C<T*>

+
+

B::C<T*>

Synopsis

diff --git a/test-files/golden-tests/variadic-function.html b/test-files/golden-tests/variadic-function.html index f92f281782..bd6c99346c 100644 --- a/test-files/golden-tests/variadic-function.html +++ b/test-files/golden-tests/variadic-function.html @@ -5,9 +5,9 @@

Reference

-
-

Global namespace

+
+

Global namespace

Types

@@ -42,9 +42,9 @@

Functions

-
-

T

+
+

T

Synopsis

@@ -57,9 +57,9 @@

Synopsis

-
-

U

+
+

U

Synopsis

@@ -72,9 +72,9 @@

Synopsis

-
-

f

+
+

f

Synopsis

@@ -88,9 +88,9 @@

Synopsis

-
-

g

+
+

g

Synopsis

@@ -104,9 +104,9 @@

Synopsis

-
-

C

+
+

C

Synopsis