Skip to content

Commit 97d12d0

Browse files
author
Dimitri van Heesch
committed
Bug 733451 - volatile declaration on member functions is not handled as xml attribute
1 parent ed8ce3c commit 97d12d0

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

src/compound.xsd

+6-6
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,12 @@
145145
<xsd:attribute name="id" type="xsd:string" />
146146
<xsd:attribute name="prot" type="DoxProtectionKind" />
147147
<xsd:attribute name="static" type="DoxBool" />
148-
<xsd:attribute name="const" type="DoxBool" />
149-
<xsd:attribute name="explicit" type="DoxBool" />
150-
<xsd:attribute name="inline" type="DoxBool" />
151-
<xsd:attribute name="virt" type="DoxVirtualKind" />
152-
<xsd:attribute name="volatile" type="DoxBool" />
153-
<xsd:attribute name="mutable" type="DoxBool" />
148+
<xsd:attribute name="const" type="DoxBool" use="optional"/>
149+
<xsd:attribute name="explicit" type="DoxBool" use="optional"/>
150+
<xsd:attribute name="inline" type="DoxBool" use="optional"/>
151+
<xsd:attribute name="virt" type="DoxVirtualKind" use="optional"/>
152+
<xsd:attribute name="volatile" type="DoxBool" use="optional"/>
153+
<xsd:attribute name="mutable" type="DoxBool" use="optional"/>
154154
<!-- Qt property -->
155155
<xsd:attribute name="readable" type="DoxBool" use="optional"/>
156156
<xsd:attribute name="writable" type="DoxBool" use="optional"/>

src/xmlgen.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,11 @@ static void generateXMLForMember(MemberDef *md,FTextStream &ti,FTextStream &t,De
646646
t << " required=\"yes\"";
647647
}
648648

649+
if (al && al->volatileSpecifier)
650+
{
651+
t << " volatile=\"yes\"";
652+
}
653+
649654
t << " virt=\"";
650655
switch (md->virtualness())
651656
{
@@ -671,7 +676,6 @@ static void generateXMLForMember(MemberDef *md,FTextStream &ti,FTextStream &t,De
671676
{
672677
t << " initonly=\"yes\"";
673678
}
674-
675679
if (md->isAttribute())
676680
{
677681
t << " attribute=\"yes\"";

0 commit comments

Comments
 (0)