Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-13 11:30:02 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-13 11:30:02 +0300
commit1615bb24248e1ea78995a0b678065ce75280cb44 (patch)
tree1d9070170e2ce08692d72935b9cec9423ec34bae /include/llfio/v2.0/map_view.hpp
parent45ca11837abf3844fd5defcdee930be0c0e369c2 (diff)
Fix test failures on Appveyor.
Diffstat (limited to 'include/llfio/v2.0/map_view.hpp')
-rw-r--r--include/llfio/v2.0/map_view.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llfio/v2.0/map_view.hpp b/include/llfio/v2.0/map_view.hpp
index b4811891..75bab5b0 100644
--- a/include/llfio/v2.0/map_view.hpp
+++ b/include/llfio/v2.0/map_view.hpp
@@ -54,7 +54,7 @@ public:
\param map The mapped data to take a view upon.
\param length The number of items to map, use -1 to mean the length of the input view.
- \param byteoffset The item offset into the mapped file handle.
+ \param offset The item offset into the mapped file handle.
*/
map_view(mapped<T> &map, size_type length = (size_type) -1, size_type offset = 0) // NOLINT
: span<T>(map.begin() + offset, (length == (size_type) -1) ? (map.size() - offset) : length) // NOLINT