Boost C++ Libraries: Ticket #6832: Missing "using" statement for copy_directory() https://svn.boost.org/trac10/ticket/6832 <p> In boost/filesystem/v3/operations.hpp there is no "using filesystem3::copy_directory" statement. </p> <p> Therefore one must explicitly write "boost::filesystem3::copy_directory()" instead of "boost::filesystem::copy_directory()". </p> <p> Trivial patch: </p> <p> --- operations.hpp 2012-04-26 21:01:10.598976200 +0200 +++ operations.hpp.patched 2012-04-26 20:59:30.176458500 +0200 @@ -1128,6 +1128,7 @@ </p> <blockquote> <p> using filesystem3::character_file; </p> </blockquote> <blockquote> <p> <em> using filesystem3::copy; </em></p> <blockquote> <p> using filesystem3::copy_file; </p> </blockquote> </blockquote> <p> + using filesystem3::copy_directory; </p> <blockquote> <p> using filesystem3::copy_option; using filesystem3::copy_symlink; using filesystem3::create_directories; </p> </blockquote> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/6832 Trac 1.4.3 peter.klotz@… Thu, 26 Apr 2012 19:05:08 GMT attachment set https://svn.boost.org/trac10/ticket/6832 https://svn.boost.org/trac10/ticket/6832 <ul> <li><strong>attachment</strong> → <span class="trac-field-new">operations.patch</span> </li> </ul> <p> The patch without Trac's formatting </p> Ticket Chris Pick <boost@…> Sun, 10 Feb 2013 01:11:43 GMT cc set https://svn.boost.org/trac10/ticket/6832#comment:1 https://svn.boost.org/trac10/ticket/6832#comment:1 <ul> <li><strong>cc</strong> <span class="trac-author">boost@…</span> added </li> </ul> Ticket Beman Dawes Tue, 12 Feb 2013 16:26:44 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/6832#comment:2 https://svn.boost.org/trac10/ticket/6832#comment:2 <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> This bug was effectively fixed when version 2 support was removed a couple of releases ago. </p> <p> Thanks, </p> <p> --Beman </p> Ticket