<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[boost::str-Aufruf ohne boost::]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>warum kann ich das hier</p>
<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;boost\format.hpp&gt;

int main()
{
   std::string s = str( boost::format( &quot;%1%&quot; ) % 33 );
   //std::string s2 = str( 33 ); // error C3861: 'str': identifier not found
}
</code></pre>
<p>erfolgreich kompilieren (VS2005 &amp; g++), ohne vor str den namespace mit boost:: anzugeben?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/305716/boost-str-aufruf-ohne-boost</link><generator>RSS for Node</generator><lastBuildDate>Sat, 08 Aug 2026 12:24:59 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/305716.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 06 Jul 2012 11:21:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to boost::str-Aufruf ohne boost:: on Fri, 06 Jul 2012 11:21:32 GMT]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>warum kann ich das hier</p>
<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;boost\format.hpp&gt;

int main()
{
   std::string s = str( boost::format( &quot;%1%&quot; ) % 33 );
   //std::string s2 = str( 33 ); // error C3861: 'str': identifier not found
}
</code></pre>
<p>erfolgreich kompilieren (VS2005 &amp; g++), ohne vor str den namespace mit boost:: anzugeben?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230584</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230584</guid><dc:creator><![CDATA[void*]]></dc:creator><pubDate>Fri, 06 Jul 2012 11:21:32 GMT</pubDate></item><item><title><![CDATA[Reply to boost::str-Aufruf ohne boost:: on Fri, 06 Jul 2012 11:24:50 GMT]]></title><description><![CDATA[<p>&quot;Koenig-Lookup&quot; aka. ADL</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230585</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230585</guid><dc:creator><![CDATA[Koenig]]></dc:creator><pubDate>Fri, 06 Jul 2012 11:24:50 GMT</pubDate></item><item><title><![CDATA[Reply to boost::str-Aufruf ohne boost:: on Fri, 06 Jul 2012 11:37:20 GMT]]></title><description><![CDATA[<p>Vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230587</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230587</guid><dc:creator><![CDATA[void*]]></dc:creator><pubDate>Fri, 06 Jul 2012 11:37:20 GMT</pubDate></item><item><title><![CDATA[Reply to boost::str-Aufruf ohne boost:: on Fri, 06 Jul 2012 13:06:15 GMT]]></title><description><![CDATA[<p>Eine ausführliche Erklärung zu den verschieden Arten der Namensauflösung (ich hoffe, dies ist die deutsche Entsprechung zu &quot;name lookup&quot;) gibt es in <a href="http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Core-C-/Stephan-T-Lavavej-Core-C-1-of-n" rel="nofollow">diesem</a> Video.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230605</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230605</guid><dc:creator><![CDATA[ananas]]></dc:creator><pubDate>Fri, 06 Jul 2012 13:06:15 GMT</pubDate></item><item><title><![CDATA[Reply to boost::str-Aufruf ohne boost:: on Fri, 06 Jul 2012 15:14:43 GMT]]></title><description><![CDATA[<p>Übrigens würde ich in Include-Pfaden Slash statt Backslash verwenden, das funktioniert plattformunabhänig.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230637</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230637</guid><dc:creator><![CDATA[Nexus]]></dc:creator><pubDate>Fri, 06 Jul 2012 15:14:43 GMT</pubDate></item><item><title><![CDATA[Reply to boost::str-Aufruf ohne boost:: on Mon, 09 Jul 2012 10:23:09 GMT]]></title><description><![CDATA[<p>ananas schrieb:</p>
<blockquote>
<p>Eine ausführliche Erklärung zu den verschieden Arten der Namensauflösung (ich hoffe, dies ist die deutsche Entsprechung zu &quot;name lookup&quot;) gibt es in <a href="http://channel9.msdn.com/Series/C9-Lectures-Stephan-T-Lavavej-Core-C-/Stephan-T-Lavavej-Core-C-1-of-n" rel="nofollow">diesem</a> Video.</p>
</blockquote>
<p>Interessant! Danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2231237</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2231237</guid><dc:creator><![CDATA[void*]]></dc:creator><pubDate>Mon, 09 Jul 2012 10:23:09 GMT</pubDate></item><item><title><![CDATA[Reply to boost::str-Aufruf ohne boost:: on Mon, 09 Jul 2012 10:25:26 GMT]]></title><description><![CDATA[<p>Nexus schrieb:</p>
<blockquote>
<p>Übrigens würde ich in Include-Pfaden Slash statt Backslash verwenden, das funktioniert plattformunabhänig.</p>
</blockquote>
<p>Mache ich eigentlich immer.<br />
Als ich das &quot;Problem&quot; reduziert habe, habe ich den ursprünglichen Code reinkopiert und nicht darauf geachtet.<br />
Trotzdem Danke für den Hinweis.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2231239</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2231239</guid><dc:creator><![CDATA[void*]]></dc:creator><pubDate>Mon, 09 Jul 2012 10:25:26 GMT</pubDate></item></channel></rss>