Boost C++ Libraries: Ticket #5764: filesystem/v3 path string method missing "template qualifier" https://svn.boost.org/trac10/ticket/5764 <p> When compiling filesystem lib on a QNX6.3.2 host (gcc-3.3.5) there is an error when calling path template method "string" because of missing template method qualifier. </p> <p> Here is the patch: </p> <p> --- path.hpp (revision 73619) +++ path.hpp (working copy) @@ -592,7 +592,7 @@ </p> <blockquote> <p> operator&lt;&lt;(std::basic_ostream&lt;Char, Traits&gt;&amp; os, const path&amp; p) { </p> <blockquote> <p> return os </p> </blockquote> </blockquote> <ul><li> &lt;&lt; boost::io::quoted(p.string&lt;std::basic_string&lt;Char&gt; &gt;(), static_cast&lt;Char&gt;('&amp;')); </li></ul><p> + &lt;&lt; boost::io::quoted(p.template string&lt;std::basic_string&lt;Char&gt; &gt;(), static_cast&lt;Char&gt;('&amp;')); </p> <blockquote> <p> } </p> </blockquote> <p> </p> <blockquote> <p> template &lt;class Char, class Traits&gt; </p> </blockquote> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/5764 Trac 1.4.3 Beman Dawes Mon, 15 Aug 2011 19:29:30 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/5764#comment:1 https://svn.boost.org/trac10/ticket/5764#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> (In <a class="changeset" href="https://svn.boost.org/trac10/changeset/73795" title="Fix #5764 - add template qualified; reported to be required on ...">[73795]</a>) Fix <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/5764" title="#5764: Bugs: filesystem/v3 path string method missing &#34;template qualifier&#34; (closed: fixed)">#5764</a> - add template qualified; reported to be required on QNX6.3.2 host (gcc-3.3.5) </p> Ticket