<?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: How to Adapt Templates as a Fusion Sequence</title>
	<atom:link href="http://boost-spirit.com/home/2010/02/08/how-to-adapt-templates-as-a-fusion-sequence/feed/" rel="self" type="application/rss+xml" />
	<link>http://boost-spirit.com/home/2010/02/08/how-to-adapt-templates-as-a-fusion-sequence/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-adapt-templates-as-a-fusion-sequence</link>
	<description>Home of The Boost.Spirit Library</description>
	<lastBuildDate>Wed, 25 Jan 2012 14:26:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Egor</title>
		<link>http://boost-spirit.com/home/2010/02/08/how-to-adapt-templates-as-a-fusion-sequence/comment-page-1/#comment-26743</link>
		<dc:creator>Egor</dc:creator>
		<pubDate>Tue, 03 May 2011 07:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://boost-spirit.com/home/?p=971#comment-26743</guid>
		<description>I really cann&#039;t understand, why we need to transform data&lt;A&gt; to fusion::vector&lt;A&gt;. Why not contrary? Because type fusion::vector&lt;A&gt; is built automatically by &#039;&gt;&gt;&#039; and &#039;qi::auto_&#039;, but we want to have data&lt;A&gt;.

Shortly: why transformation is data&lt;A&gt; -&gt; fusion::vector&lt;A&gt;, but not contrary?

P.S. Excuse me if my English is not clear enough.</description>
		<content:encoded><![CDATA[<p>I really cann&#8217;t understand, why we need to transform data<a> to fusion::vector</a><a>. Why not contrary? Because type fusion::vector</a><a> is built automatically by &#8216;&gt;&gt;&#8217; and &#8216;qi::auto_&#8217;, but we want to have data</a><a>.</p>
<p>Shortly: why transformation is data</a><a> -&gt; fusion::vector</a><a>, but not contrary?</p>
<p>P.S. Excuse me if my English is not clear enough.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hartmut Kaiser</title>
		<link>http://boost-spirit.com/home/2010/02/08/how-to-adapt-templates-as-a-fusion-sequence/comment-page-1/#comment-3300</link>
		<dc:creator>Hartmut Kaiser</dc:creator>
		<pubDate>Sun, 25 Apr 2010 17:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://boost-spirit.com/home/?p=971#comment-3300</guid>
		<description>Olaf, 
definitely. This was a typo in the code which is corrected now.

Thanks!
Regards Hartmut</description>
		<content:encoded><![CDATA[<p>Olaf,<br />
definitely. This was a typo in the code which is corrected now.</p>
<p>Thanks!<br />
Regards Hartmut</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olaf</title>
		<link>http://boost-spirit.com/home/2010/02/08/how-to-adapt-templates-as-a-fusion-sequence/comment-page-1/#comment-3298</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Sun, 25 Apr 2010 17:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://boost-spirit.com/home/?p=971#comment-3298</guid>
		<description>Is the 
[cpp]
typedef fusion::vector&lt;A&amp;, B&gt; type 
[/cpp]
correct? Isn&#039;t it 
[cpp]
typedef fusion::vector&lt;A&amp;, B&amp;&gt; type ?
[/cpp]
Thanks,
Olaf</description>
		<content:encoded><![CDATA[<p>Is the </p>
<pre class="brush: cpp; title: ; notranslate">
typedef fusion::vector&lt;A&amp;, B&gt; type
</pre>
<p>correct? Isn&#8217;t it </p>
<pre class="brush: cpp; title: ; notranslate">
typedef fusion::vector&lt;A&amp;, B&amp;&gt; type ?
</pre>
<p>Thanks,<br />
Olaf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hartmut Kaiser</title>
		<link>http://boost-spirit.com/home/2010/02/08/how-to-adapt-templates-as-a-fusion-sequence/comment-page-1/#comment-1420</link>
		<dc:creator>Hartmut Kaiser</dc:creator>
		<pubDate>Tue, 09 Feb 2010 12:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://boost-spirit.com/home/?p=971#comment-1420</guid>
		<description>Jeroen,

you’re right, fail() will be added with the next version only (Boost 1.43/Spirit V2.3), but it doesn’t hurt to define that function anyways, it just won’t be called.

Thanks!
Regards Hartmut</description>
		<content:encoded><![CDATA[<p>Jeroen,</p>
<p>you’re right, fail() will be added with the next version only (Boost 1.43/Spirit V2.3), but it doesn’t hurt to define that function anyways, it just won’t be called.</p>
<p>Thanks!<br />
Regards Hartmut</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen Habraken</title>
		<link>http://boost-spirit.com/home/2010/02/08/how-to-adapt-templates-as-a-fusion-sequence/comment-page-1/#comment-1418</link>
		<dc:creator>Jeroen Habraken</dc:creator>
		<pubDate>Tue, 09 Feb 2010 08:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://boost-spirit.com/home/?p=971#comment-1418</guid>
		<description>I believe for backwards compatibility you should &lt;code&gt;#include &lt;boost/spirit/include/version.hpp&gt;&lt;/code&gt; and wrap the fail function in a &lt;code&gt;#if SPIRIT_VERSION &gt;= 0x2030 .. #endif&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I believe for backwards compatibility you should <code>#include &lt;boost/spirit/include/version.hpp&gt;</code> and wrap the fail function in a <code>#if SPIRIT_VERSION &gt;= 0x2030 .. #endif</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

