<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: Modern C++: 7 Ways to Fake It Until You Have It	</title>
	<atom:link href="https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/</link>
	<description>Jonathan Boccara&#039;s blog</description>
	<lastBuildDate>Thu, 11 Oct 2018 11:46:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.4</generator>
	<item>
		<title>
		By: Jonathan Boccara		</title>
		<link>https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1360</link>

		<dc:creator><![CDATA[Jonathan Boccara]]></dc:creator>
		<pubDate>Thu, 04 Oct 2018 21:46:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3582#comment-1360</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1318&quot;&gt;Vincent&lt;/a&gt;.

I guess the closest way would be to use std::tie (check out &lt;a href=&quot;https://www.fluentcpp.com/2016/11/22/make-your-functions-functional/&quot; /&gt;Make your functions functional&lt;/a&gt; section &quot;Multiple return types&quot;).]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1318">Vincent</a>.</p>
<p>I guess the closest way would be to use std::tie (check out <a href="https://www.fluentcpp.com/2016/11/22/make-your-functions-functional/"></a>Make your functions functional section &#8220;Multiple return types&#8221;).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Vincent		</title>
		<link>https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1318</link>

		<dc:creator><![CDATA[Vincent]]></dc:creator>
		<pubDate>Fri, 21 Sep 2018 14:26:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3582#comment-1318</guid>

					<description><![CDATA[Would you mind telling me how to emulate structured bindings? Thank a lot.]]></description>
			<content:encoded><![CDATA[<p>Would you mind telling me how to emulate structured bindings? Thank a lot.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Taw Moto		</title>
		<link>https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1262</link>

		<dc:creator><![CDATA[Taw Moto]]></dc:creator>
		<pubDate>Sat, 01 Sep 2018 19:40:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3582#comment-1262</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1261&quot;&gt;Abdullah Rahman&lt;/a&gt;.

Is not ridiculous at all if you are creating libraries for your customers and they must be deployed on small devices, like routers, which have gcc 4.8.
Not everybody deploys only their binaries and they magically work.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1261">Abdullah Rahman</a>.</p>
<p>Is not ridiculous at all if you are creating libraries for your customers and they must be deployed on small devices, like routers, which have gcc 4.8.<br />
Not everybody deploys only their binaries and they magically work.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Abdullah Rahman		</title>
		<link>https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1261</link>

		<dc:creator><![CDATA[Abdullah Rahman]]></dc:creator>
		<pubDate>Sat, 01 Sep 2018 09:38:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3582#comment-1261</guid>

					<description><![CDATA[This is ridiculous. Don&#039;t write /*= delete*/, instead upgrade your compiler. Just do it. No excuses.]]></description>
			<content:encoded><![CDATA[<p>This is ridiculous. Don&#8217;t write /*= delete*/, instead upgrade your compiler. Just do it. No excuses.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ramey		</title>
		<link>https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1260</link>

		<dc:creator><![CDATA[ramey]]></dc:creator>
		<pubDate>Fri, 31 Aug 2018 21:58:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3582#comment-1260</guid>

					<description><![CDATA[#4 Concepts

Consider using Paul Fultz &quot;Tick&quot; library to include concepts in your code now! It was originally inspired by the ad hoc implementation made for Ranges.  As far as I&#039;m concerned its just as useful as the C++20 proposal, better documented and available now.  Future transition to the &quot;official&quot; concepts implementation should be easy when/if you decide to do this.]]></description>
			<content:encoded><![CDATA[<p>#4 Concepts</p>
<p>Consider using Paul Fultz &#8220;Tick&#8221; library to include concepts in your code now! It was originally inspired by the ad hoc implementation made for Ranges.  As far as I&#8217;m concerned its just as useful as the C++20 proposal, better documented and available now.  Future transition to the &#8220;official&#8221; concepts implementation should be easy when/if you decide to do this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Taw Moto		</title>
		<link>https://www.fluentcpp.com/2018/08/31/modern-cpp-fake-it-until-you-have-it/#comment-1259</link>

		<dc:creator><![CDATA[Taw Moto]]></dc:creator>
		<pubDate>Fri, 31 Aug 2018 11:05:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3582#comment-1259</guid>

					<description><![CDATA[In my opinion &quot;=delete&quot; is stupid because you can still access the &quot;deleted&quot; constructor with &quot;Class obj{}&quot;]]></description>
			<content:encoded><![CDATA[<p>In my opinion &#8220;=delete&#8221; is stupid because you can still access the &#8220;deleted&#8221; constructor with &#8220;Class obj{}&#8221;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
