Opened 10 years ago

Closed 10 years ago

#6832 closed Bugs (fixed)

Missing "using" statement for copy_directory()

Reported by: peter.klotz@… Owned by: Beman Dawes
Milestone: To Be Determined Component: filesystem
Version: Boost 1.49.0 Severity: Problem
Keywords: Cc: boost@…

Description

In boost/filesystem/v3/operations.hpp there is no "using filesystem3::copy_directory" statement.

Therefore one must explicitly write "boost::filesystem3::copy_directory()" instead of "boost::filesystem::copy_directory()".

Trivial patch:

--- 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 @@

using filesystem3::character_file;

using filesystem3::copy;

using filesystem3::copy_file;

+ using filesystem3::copy_directory;

using filesystem3::copy_option; using filesystem3::copy_symlink; using filesystem3::create_directories;

Attachments (1)

operations.patch (413 bytes ) - added by peter.klotz@… 10 years ago.
The patch without Trac's formatting

Download all attachments as: .zip

Change History (3)

by peter.klotz@…, 10 years ago

Attachment: operations.patch added

The patch without Trac's formatting

comment:1 by Chris Pick <boost@…>, 10 years ago

Cc: boost@… added

comment:2 by Beman Dawes, 10 years ago

Resolution: fixed
Status: newclosed

This bug was effectively fixed when version 2 support was removed a couple of releases ago.

Thanks,

--Beman

Note: See TracTickets for help on using tickets.