Ticket #6916: file_descriptor.hpp.patch

File file_descriptor.hpp.patch, 701 bytes (added by Aaron Barany <akb825@…>, 10 years ago)

Patch to provide the function definition.

Line 
1*** boost/iostreams/device/file_descriptor.hpp Sat Jul 10 07:20:45 2010
2--- boost/iostreams/device/file_descriptor.hpp Thu May 17 11:54:01 2012
3***************
4*** 218,224 ****
5
6 // open overload taking a Boost.Filesystem path
7 template<typename Path>
8! void open(const Path& path, BOOST_IOS::openmode mode = BOOST_IOS::in);
9 private:
10
11 // open overload taking a detail::path
12--- 218,225 ----
13
14 // open overload taking a Boost.Filesystem path
15 template<typename Path>
16! void open(const Path& path, BOOST_IOS::openmode mode = BOOST_IOS::in)
17! { open(detail::path(path), mode); }
18 private:
19
20 // open overload taking a detail::path