Fix missing return type for copy assignment operators

[SVN r20103]
This commit is contained in:
Douglas Gregor 2003-09-18 19:59:48 +00:00
parent 80fbbcacf9
commit e9232f91cc

View File

@ -90,7 +90,7 @@
<!-- Copy assignment operators return a reference to the class <!-- Copy assignment operators return a reference to the class
they are in, unless another type has been explicitly they are in, unless another type has been explicitly
provided in the element. --> provided in the element. -->
<xsl:when test="$copy-assign-for and not(type) and type"> <xsl:when test="$copy-assign-for and not(type)">
<xsl:value-of select="concat($copy-assign-for, '&amp; ')"/> <xsl:value-of select="concat($copy-assign-for, '&amp; ')"/>
</xsl:when> </xsl:when>
@ -226,7 +226,7 @@
<!-- Copy assignment operators return a reference to the class <!-- Copy assignment operators return a reference to the class
they are in, unless another type has been explicitly they are in, unless another type has been explicitly
provided in the element. --> provided in the element. -->
<xsl:when test="$copy-assign-for and not(type) and type"> <xsl:when test="$copy-assign-for and not(type)">
<xsl:value-of select="concat($copy-assign-for, '&amp; ')"/> <xsl:value-of select="concat($copy-assign-for, '&amp; ')"/>
</xsl:when> </xsl:when>
@ -278,7 +278,7 @@
<!-- Copy assignment operators return a reference to the class <!-- Copy assignment operators return a reference to the class
they are in, unless another type has been explicitly they are in, unless another type has been explicitly
provided in the element. --> provided in the element. -->
<xsl:when test="$copy-assign-for and not(type) and type"> <xsl:when test="$copy-assign-for and not(type)">
<xsl:value-of select="concat($copy-assign-for, '&amp; ')"/> <xsl:value-of select="concat($copy-assign-for, '&amp; ')"/>
</xsl:when> </xsl:when>