renamed size --> new_file_size

[SVN r29286]
This commit is contained in:
Jonathan Turkanis
2005-05-30 07:33:56 +00:00
parent dd45decb46
commit 8b0f89568b

View File

@@ -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;
};