mirror of
https://github.com/boostorg/boostbook.git
synced 2025-05-09 23:13:58 +00:00
Support reference for variables that are both static and mutable in
boostbook. [SVN r52083]
This commit is contained in:
parent
39eb5bacb8
commit
ce6a49b1fe
@ -1152,11 +1152,14 @@
|
|||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
|
|
||||||
<!-- Specifiers -->
|
<!-- Specifiers -->
|
||||||
<xsl:if test="@static = 'yes'">
|
<xsl:variable name="specifiers">
|
||||||
<xsl:attribute name="specifiers">static</xsl:attribute>
|
<xsl:if test="@static = 'yes'"><xsl:text> static</xsl:text></xsl:if>
|
||||||
</xsl:if>
|
<xsl:if test="@mutable = 'yes'"><xsl:text> mutable</xsl:text></xsl:if>
|
||||||
<xsl:if test="@mutable = 'yes'">
|
</xsl:variable>
|
||||||
<xsl:attribute name="specifiers">mutable</xsl:attribute>
|
<xsl:if test="normalize-space($specifiers)">
|
||||||
|
<xsl:attribute name="specifiers">
|
||||||
|
<xsl:value-of select="normalize-space($specifiers)"/>
|
||||||
|
</xsl:attribute>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
|
|
||||||
<type>
|
<type>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user