<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mistake in C++ Reference Guide</title>
	<atom:link href="http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/</link>
	<description>Weblog of a lively geek.</description>
	<lastBuildDate>Wed, 18 Aug 2010 01:20:22 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: fr3@K</title>
		<link>http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/comment-page-1/#comment-2787</link>
		<dc:creator>fr3@K</dc:creator>
		<pubDate>Wed, 02 May 2007 13:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/#comment-2787</guid>
		<description>Peace :-)</description>
		<content:encoded><![CDATA[<p>Peace <img src='http://fsfoundry.org/codefreak/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/comment-page-1/#comment-2786</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Wed, 02 May 2007 11:44:29 +0000</pubDate>
		<guid isPermaLink="false">http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/#comment-2786</guid>
		<description>My bad.   I had other things on my mind so I wasn&#039;t reading it carefully.  I apologise for my &lt;em&gt;assertiveness&lt;/em&gt;.</description>
		<content:encoded><![CDATA[<p>My bad.   I had other things on my mind so I wasn&#8217;t reading it carefully.  I apologise for my <em>assertiveness</em>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fr3@K</title>
		<link>http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/comment-page-1/#comment-2780</link>
		<dc:creator>fr3@K</dc:creator>
		<pubDate>Wed, 02 May 2007 02:05:25 +0000</pubDate>
		<guid isPermaLink="false">http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/#comment-2780</guid>
		<description>Adrian,

The &lt;code&gt;A&amp;&amp;&lt;/code&gt; thing is a &lt;a href=&quot;http://www.informit.com/guides/content.asp?g=cplusplus&amp;seqNum=310&amp;rl=1&quot; rel=&quot;nofollow&quot;&gt;proposal&lt;/a&gt; (i.e. not in the stadard, yet) called &lt;a href=&quot;http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2002/n1377.htm#What%20is%20needed%20from%20the%20language?&quot; rel=&quot;nofollow&quot;&gt;rvalue reference&lt;/a&gt;, which you would&#039;ve been familiar with (or at least read about) if you followed links in this post.

It&#039;s true that one shouldn&#039;t code something like &lt;code&gt;A&amp;&amp;&lt;/code&gt; under current C++ standard, and it&#039;s likely true those code won&#039;t compile (if not interpreted as something else by faulty compilers), neither. But apparently, you have no clue what it was.

Please be less &lt;i&gt;assertive&lt;/i&gt; in wording next time, otherwise I would expect you to know what you are talking about, or at least followed links in my post.
</description>
		<content:encoded><![CDATA[<p>Adrian,</p>
<p>The <code>A&#038;&#038;</code> thing is a <a href="http://www.informit.com/guides/content.asp?g=cplusplus&#038;seqNum=310&#038;rl=1" rel="nofollow">proposal</a> (i.e. not in the stadard, yet) called <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2002/n1377.htm#What%20is%20needed%20from%20the%20language?" rel="nofollow">rvalue reference</a>, which you would&#8217;ve been familiar with (or at least read about) if you followed links in this post.</p>
<p>It&#8217;s true that one shouldn&#8217;t code something like <code>A&#038;&#038;</code> under current C++ standard, and it&#8217;s likely true those code won&#8217;t compile (if not interpreted as something else by faulty compilers), neither. But apparently, you have no clue what it was.</p>
<p>Please be less <i>assertive</i> in wording next time, otherwise I would expect you to know what you are talking about, or at least followed links in my post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/comment-page-1/#comment-2778</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Tue, 01 May 2007 17:12:51 +0000</pubDate>
		<guid isPermaLink="false">http://fsfoundry.org/codefreak/2007/04/28/mistake-in-cplusplus-reference-guide/#comment-2778</guid>
		<description>void foo(A&amp;&amp; t);       // #2

What is A&amp;&amp;?  You cannot have a reference to a reference.  It is disallowed in C++.


Adrian</description>
		<content:encoded><![CDATA[<p>void foo(A&amp;&amp; t);       // #2</p>
<p>What is A&amp;&amp;?  You cannot have a reference to a reference.  It is disallowed in C++.</p>
<p>Adrian</p>
]]></content:encoded>
	</item>
</channel>
</rss>
