Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r52349 - trunk/tools/boostbook/xsl/doxygen
From: daniel_james_at_[hidden]
Date: 2009-04-12 06:50:44


Author: danieljames
Date: 2009-04-12 06:50:43 EDT (Sun, 12 Apr 2009)
New Revision: 52349
URL: http://svn.boost.org/trac/boost/changeset/52349

Log:
Revert support for static mutable variables.

Of course there's no such thing.
Text files modified:
   trunk/tools/boostbook/xsl/doxygen/doxygen2boostbook.xsl | 13 +++++--------
   1 files changed, 5 insertions(+), 8 deletions(-)

Modified: trunk/tools/boostbook/xsl/doxygen/doxygen2boostbook.xsl
==============================================================================
--- trunk/tools/boostbook/xsl/doxygen/doxygen2boostbook.xsl (original)
+++ trunk/tools/boostbook/xsl/doxygen/doxygen2boostbook.xsl 2009-04-12 06:50:43 EDT (Sun, 12 Apr 2009)
@@ -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>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk