Opened 10 years ago
#6916 new Bugs
file_descriptor_sink is missing the definition for its templated open() function.
Reported by: | Owned by: | Jonathan Turkanis | |
---|---|---|---|
Milestone: | To Be Determined | Component: | iostreams |
Version: | Boost 1.49.0 | Severity: | Problem |
Keywords: | Cc: |
Description
file_descriptor_sink has a templated function to open based on any path type, but the function has no definition, resulting in linker errors if you try to call it. I have attached a patch that implements the function by calling open() with detail::path, the same as how file_descriptor and file_descriptor_source do it.
Attachments (1)
Note:
See TracTickets
for help on using tickets.
Patch to provide the function definition.