<?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: std::tr1::shared_ptr tutorial</title>
	<atom:link href="http://anteru.net/2008/09/01/260/feed/" rel="self" type="application/rss+xml" />
	<link>http://anteru.net/2008/09/01/260/</link>
	<description>Graphics, programming &#38; software engineering</description>
	<lastBuildDate>Thu, 22 Mar 2012 06:25:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Nickolay</title>
		<link>http://anteru.net/2008/09/01/260/comment-page-1/#comment-53092</link>
		<dc:creator>Nickolay</dc:creator>
		<pubDate>Fri, 06 Jan 2012 14:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=260#comment-53092</guid>
		<description>shared_ptr is not an addition to the STL. It is an addition to the C++ Standard Library.
Standard Library and STL are not the same.</description>
		<content:encoded><![CDATA[<p>shared_ptr is not an addition to the STL. It is an addition to the C++ Standard Library.<br />
Standard Library and STL are not the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spaß mit stl::shared_ptr auf ein c-array in C++ (Memory Tester) &#171; Wissenswertes</title>
		<link>http://anteru.net/2008/09/01/260/comment-page-1/#comment-29612</link>
		<dc:creator>Spaß mit stl::shared_ptr auf ein c-array in C++ (Memory Tester) &#171; Wissenswertes</dc:creator>
		<pubDate>Mon, 24 Jan 2011 14:30:08 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=260#comment-29612</guid>
		<description>[...] findet sich hier: shared_ptr bei MSDN Arrays, shared_ptr and deleters shared_ptr und c-Arrays shared_ptr Tutorial Diskussion auf Stackoverflow   Wer mit dem Code rumspielen möchte oder auch nur mal seinen [...]</description>
		<content:encoded><![CDATA[<p>[...] findet sich hier: shared_ptr bei MSDN Arrays, shared_ptr and deleters shared_ptr und c-Arrays shared_ptr Tutorial Diskussion auf Stackoverflow   Wer mit dem Code rumspielen möchte oder auch nur mal seinen [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: auto_ptr,shared_ptr智能指针的使用 &#171; 云海游鱼的Bolg</title>
		<link>http://anteru.net/2008/09/01/260/comment-page-1/#comment-18299</link>
		<dc:creator>auto_ptr,shared_ptr智能指针的使用 &#171; 云海游鱼的Bolg</dc:creator>
		<pubDate>Wed, 31 Mar 2010 05:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=260#comment-18299</guid>
		<description>[...] [4]http://anteru.net/2008/09/01/260/ [...]</description>
		<content:encoded><![CDATA[<p>[...] [4]http://anteru.net/2008/09/01/260/ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anteru</title>
		<link>http://anteru.net/2008/09/01/260/comment-page-1/#comment-4398</link>
		<dc:creator>Anteru</dc:creator>
		<pubDate>Wed, 15 Oct 2008 15:55:11 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=260#comment-4398</guid>
		<description>My bad, yes, you&#039;re right, thanks. With GCC 4.3 there are two ways to get shared_ptrs:
  * include &lt;code&gt;&lt;memory&gt;&lt;/code&gt;, which gives you (if using --std=c++0x) &lt;code&gt;std::shared_ptr&lt;/code&gt;
  * include &lt;code&gt;&lt;tr1/memory&gt;&lt;/code&gt; which gives &lt;code&gt;std::tr1::shared_ptr&lt;/code&gt; independent of the standards mode

Of course, you can always use &lt;code&gt;boost/tr1/memory.hpp&lt;/code&gt; to be safe in every case.</description>
		<content:encoded><![CDATA[<p>My bad, yes, you&#8217;re right, thanks. With GCC 4.3 there are two ways to get shared_ptrs:<br />
  * include <code>&lt;memory&gt;</code>, which gives you (if using &#8211;std=c++0x) <code>std::shared_ptr</code><br />
  * include <code>&lt;tr1/memory&gt;</code> which gives <code>std::tr1::shared_ptr</code> independent of the standards mode</p>
<p>Of course, you can always use <code>boost/tr1/memory.hpp</code> to be safe in every case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Wakely</title>
		<link>http://anteru.net/2008/09/01/260/comment-page-1/#comment-4397</link>
		<dc:creator>Jonathan Wakely</dc:creator>
		<pubDate>Wed, 15 Oct 2008 15:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=260#comment-4397</guid>
		<description>Gah ... that should have read ...


You still need to include &lt;tr1/memory&gt; to get std::tr1::shared_ptr in GCC 4.3

You can get std::shared_ptr by including &lt;memory&gt; if you enable the experimental C++0x support with -std=c++0x, but you still don’t get std::tr1::shared_ptr</description>
		<content:encoded><![CDATA[<p>Gah &#8230; that should have read &#8230;</p>
<p>You still need to include &lt;tr1/memory&gt; to get std::tr1::shared_ptr in GCC 4.3</p>
<p>You can get std::shared_ptr by including &lt;memory&gt; if you enable the experimental C++0x support with -std=c++0x, but you still don’t get std::tr1::shared_ptr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Wakely</title>
		<link>http://anteru.net/2008/09/01/260/comment-page-1/#comment-4396</link>
		<dc:creator>Jonathan Wakely</dc:creator>
		<pubDate>Wed, 15 Oct 2008 15:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://anteru.net/?p=260#comment-4396</guid>
		<description>You still need to include  to get std::tr1::shared_ptr in GCC 4.3

You can get std::shared_ptr by including  if you enable the experimental C++0x support with -std=c++0x, but you still don&#039;t get std::tr1::shared_ptr unless you include </description>
		<content:encoded><![CDATA[<p>You still need to include  to get std::tr1::shared_ptr in GCC 4.3</p>
<p>You can get std::shared_ptr by including  if you enable the experimental C++0x support with -std=c++0x, but you still don&#8217;t get std::tr1::shared_ptr unless you include </p>
]]></content:encoded>
	</item>
</channel>
</rss>

