Opened 6 years ago
#12392 new Bugs
boost::iostreams::mapped_file fails during creating file with zero length
Reported by: | Owned by: | Jonathan Turkanis | |
---|---|---|---|
Milestone: | To Be Determined | Component: | iostreams |
Version: | Boost 1.60.0 | Severity: | Problem |
Keywords: | Cc: |
Description
example
boost::iostreams::mapped_file_params par; boost::iostreams::mapped_file file; par.path = 'some.file'; par.offset = 0; par.new_file_size = 0; file.open(par);
Note:
See TracTickets
for help on using tickets.