mirror of
https://github.com/boostorg/boostbook.git
synced 2025-05-09 02:43:58 +00:00
Revert support for static mutable variables.
Of course there's no such thing. [SVN r52349]
This commit is contained in:
parent
41398d1414
commit
34c6963030
@ -1159,14 +1159,11 @@
|
||||
</xsl:attribute>
|
||||
|
||||
<!-- Specifiers -->
|
||||
<xsl:variable name="specifiers">
|
||||
<xsl:if test="@static = 'yes'"><xsl:text> static</xsl:text></xsl:if>
|
||||
<xsl:if test="@mutable = 'yes'"><xsl:text> mutable</xsl:text></xsl:if>
|
||||
</xsl:variable>
|
||||
<xsl:if test="normalize-space($specifiers)">
|
||||
<xsl:attribute name="specifiers">
|
||||
<xsl:value-of select="normalize-space($specifiers)"/>
|
||||
</xsl:attribute>
|
||||
<xsl:if test="@static = 'yes'">
|
||||
<xsl:attribute name="specifiers">static</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:if test="@mutable = 'yes'">
|
||||
<xsl:attribute name="specifiers">mutable</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<type>
|
||||
|
Loading…
x
Reference in New Issue
Block a user