<?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: This Week in&#160;Boost</title>
	<atom:link href="http://cpp-next.com/archive/2009/10/this-week-in-boost/feed/" rel="self" type="application/rss+xml" />
	<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/</link>
	<description>The next generation of C++</description>
	<lastBuildDate>Fri, 27 Jan 2012 17:36:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Steven Watanabe</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-340</link>
		<dc:creator>Steven Watanabe</dc:creator>
		<pubDate>Wed, 28 Oct 2009 03:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-340</guid>
		<description>&lt;p&gt;If you don&#039;t mind reading quickbook source, you can check
http://beta.boost.org/feed/history/boost_1_41_0.qbk&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>If you don&#8217;t mind reading quickbook source, you can check
<a href="http://beta.boost.org/feed/history/boost_1_41_0.qbk" rel="nofollow">http://beta.boost.org/feed/history/boost_1_41_0.qbk</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Kaz Dragon</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-339</link>
		<dc:creator>Kaz Dragon</dc:creator>
		<pubDate>Tue, 27 Oct 2009 16:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-339</guid>
		<description>&lt;p&gt;With the 1.41.0 beta just around the corner (Thursday, IIRC), would it be possibe to give a quick overview as to what&#039;s expected to be added to this great library collection?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>With the 1.41.0 beta just around the corner (Thursday, IIRC), would it be possibe to give a quick overview as to what&#8217;s expected to be added to this great library collection?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-338</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Sat, 17 Oct 2009 07:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-338</guid>
		<description>&lt;p&gt;OK now I see how bad this is. ADL is even worse than I thought...
Tony&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>OK now I see how bad this is. ADL is even worse than I thought&#8230;
Tony</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-337</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Sat, 17 Oct 2009 05:38:48 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-337</guid>
		<description>&lt;p&gt;It would all be much easier if the language considered this to be valid:&lt;/p&gt;

&lt;p&gt;int f()
{ return 1; }
void f(int)
{ return 2; }&lt;/p&gt;

&lt;p&gt;int main()
{
return f(f(4));
}&lt;/p&gt;

&lt;p&gt;Tony&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>It would all be much easier if the language considered this to be valid:</p>

<p>int f()
{ return 1; }
void f(int)
{ return 2; }</p>

<p>int main()
{
return f(f(4));
}</p>

<p>Tony</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-336</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Sat, 17 Oct 2009 05:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-336</guid>
		<description>&lt;p&gt;Could you redefine a &#039;standard&#039; operator,() inside of namespace detail/is_incr that hides the &#039;bad&#039; user-defined one?  ie then the one inside the namespace of is_incr be chosen first?
Or is that too simple?&lt;/p&gt;

&lt;p&gt;Tony&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Could you redefine a &#8216;standard&#8217; operator,() inside of namespace detail/is_incr that hides the &#8216;bad&#8217; user-defined one?  ie then the one inside the namespace of is_incr be chosen first?
Or is that too simple?</p>

<p>Tony</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Watanabe</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-335</link>
		<dc:creator>Steven Watanabe</dc:creator>
		<pubDate>Fri, 16 Oct 2009 14:43:55 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-335</guid>
		<description>&lt;p&gt;Yeah, that seems a little better.  I&#039;m not sure that it makes much difference in practice, since I&#039;ve only seen an overloaded &lt;code&gt;operator,&lt;/code&gt; in contrived examples anyway.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Yeah, that seems a little better.  I&#8217;m not sure that it makes much difference in practice, since I&#8217;ve only seen an overloaded <code>operator,</code> in contrived examples anyway.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: litb</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-334</link>
		<dc:creator>litb</dc:creator>
		<pubDate>Fri, 16 Oct 2009 14:16:35 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-334</guid>
		<description>&lt;p&gt;I had the same problem and did two rounds of &quot;operator,&quot; like in this one: http://codepad.org/59U28jCs . It still fails for &quot;op,(T const&amp;, test)&quot; but i thought it&#039;s less likely such a op, exists.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I had the same problem and did two rounds of &#8220;operator,&#8221; like in this one: <a href="http://codepad.org/59U28jCs" rel="nofollow">http://codepad.org/59U28jCs</a> . It still fails for &#8220;op,(T const&amp;, test)&#8221; but i thought it&#8217;s less likely such a op, exists.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Caisse</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-333</link>
		<dc:creator>Michael Caisse</dc:creator>
		<pubDate>Fri, 16 Oct 2009 01:28:12 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-333</guid>
		<description>&lt;p&gt;Great idea for a series Steven. I&#039;m looking forward to reading your weekly updates.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great idea for a series Steven. I&#8217;m looking forward to reading your weekly updates.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Watanabe</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-332</link>
		<dc:creator>Steven Watanabe</dc:creator>
		<pubDate>Thu, 15 Oct 2009 15:26:49 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-332</guid>
		<description>&lt;p&gt;There might be a way out, but if there is, I couldn&#039;t find it.  I&#039;ve tried using (non-portable) ADL hacks to generate an overload of &lt;code&gt;operator,&lt;/code&gt; that is always more specialized than any user defined overload.  It sort of worked on gcc and msvc.  Unfortunately, there were still some ICEs that I couldn&#039;t get rid of.  I don&#039;t remember the details exactly.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>There might be a way out, but if there is, I couldn&#8217;t find it.  I&#8217;ve tried using (non-portable) ADL hacks to generate an overload of <code>operator,</code> that is always more specialized than any user defined overload.  It sort of worked on gcc and msvc.  Unfortunately, there were still some ICEs that I couldn&#8217;t get rid of.  I don&#8217;t remember the details exactly.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Abrahams</title>
		<link>http://cpp-next.com/archive/2009/10/this-week-in-boost/comment-page-1/#comment-331</link>
		<dc:creator>Dave Abrahams</dc:creator>
		<pubDate>Thu, 15 Oct 2009 15:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://cpp-next.com/?p=746#comment-331</guid>
		<description>&lt;p&gt;:(  So did I implement that trick incorrectly, or is there really no way out of that problem?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p> <img src='http://cpp-next.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   So did I implement that trick incorrectly, or is there really no way out of that problem?</p>]]></content:encoded>
	</item>
</channel>
</rss>

