Revert support for static mutable variables.

Of course there's no such thing.

[SVN r52349]
This commit is contained in:
Daniel James 2009-04-12 10:50:43 +00:00
parent 41398d1414
commit 34c6963030

View File

@ -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>