mirror of
https://github.com/boostorg/iostreams.git
synced 2026-02-24 04:02:15 +00:00
renamed size --> new_file_size
[SVN r29286]
This commit is contained in:
@@ -63,18 +63,18 @@ struct mapped_file_impl;
|
||||
struct mapped_file_params {
|
||||
explicit mapped_file_params()
|
||||
: mode(), offset(0), length(static_cast<std::size_t>(-1)),
|
||||
size(0), hint(0)
|
||||
new_file_size(0), hint(0)
|
||||
{ }
|
||||
explicit mapped_file_params(const std::string& path)
|
||||
: path(path), mode(), offset(0),
|
||||
length(static_cast<std::size_t>(-1)),
|
||||
size(0), hint(0)
|
||||
new_file_size(0), hint(0)
|
||||
{ }
|
||||
std::string path;
|
||||
BOOST_IOS::openmode mode;
|
||||
stream_offset offset;
|
||||
std::size_t length;
|
||||
stream_offset size;
|
||||
stream_offset new_file_size;
|
||||
const char* hint;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user