Opened 10 years ago
Closed 10 years ago
#6832 closed Bugs (fixed)
Missing "using" statement for copy_directory()
Reported by: | 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)
Change History (3)
by , 10 years ago
Attachment: | operations.patch added |
---|
comment:1 by , 10 years ago
Cc: | added |
---|
comment:2 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
This bug was effectively fixed when version 2 support was removed a couple of releases ago.
Thanks,
--Beman
The patch without Trac's formatting