Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cppalliance/mrdocs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f5bc6a9e28f825eb046793676548afc428c07ba0
Choose a base ref
..
head repository: cppalliance/mrdocs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dc25c41021b14545928282f92e040633d5bb3ff4
Choose a head ref
Showing with 6 additions and 6 deletions.
  1. +6 −6 src/lib/Gen/xml/XMLWriter.cpp
12 changes: 6 additions & 6 deletions src/lib/Gen/xml/XMLWriter.cpp
Original file line number Diff line number Diff line change
@@ -433,7 +433,7 @@ writeNamespaceAlias(

writeSourceInfo(I);
writeJavadoc(I.javadoc);
writeAttributes(I.Attributes);
writeAttributes(I);

tags_.write("aliased", {}, {
{"name", toString(*I.AliasedSymbol)},
@@ -477,7 +477,7 @@ XMLWriter::

writeSourceInfo(I);
writeJavadoc(I.javadoc);
writeAttributes(I.Attributes);
writeAttributes(I);

for (auto const& id : I.UsingSymbols)
tags_.write("named", {}, { id });
@@ -502,7 +502,7 @@ writeRecord(

writeSourceInfo(I);
writeJavadoc(I.javadoc);
writeAttributes(I.Attributes);
writeAttributes(I);

writeAttr(I.IsFinal, "is-final", tags_);
writeAttr(I.IsFinalDestructor, "is-final-dtor", tags_);
@@ -545,7 +545,7 @@ writeTypedef(

writeSourceInfo(I);
writeJavadoc(I.javadoc);
writeAttributes(I.Attributes);
writeAttributes(I);

writeType(I.Type, tags_);

@@ -579,7 +579,7 @@ writeField(

writeSourceInfo(I);
writeJavadoc(I.javadoc);
writeAttributes(I.Attributes);
writeAttributes(I);

if(I.IsMutable)
tags_.write(attributeTagName, {}, {
@@ -609,7 +609,7 @@ writeVariable(

writeSourceInfo(I);
writeJavadoc(I.javadoc);
writeAttributes(I.Attributes);
writeAttributes(I);

writeAttr(I.StorageClass, "storage-class", tags_);
writeAttr(I.IsInline, "is-inline", tags_);