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>2020-04-13 13:28:56 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-04-13 13:28:56 +0300
commitf798bdbccaecf9d1c50f8486a6a34bbd0971ec35 (patch)
tree9115d35c6bfbff10811289264b5194254c376b75 /include/llfio/v2.0/path_handle.hpp
parent45defa9dbf3d3562c37efe48ab98bca55648afba (diff)
Add the beginnings of porting over the Win IOCP implementation from the resumable i/o branch.
Diffstat (limited to 'include/llfio/v2.0/path_handle.hpp')
-rw-r--r--include/llfio/v2.0/path_handle.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llfio/v2.0/path_handle.hpp b/include/llfio/v2.0/path_handle.hpp
index 23c6221c..8e2ee7e2 100644
--- a/include/llfio/v2.0/path_handle.hpp
+++ b/include/llfio/v2.0/path_handle.hpp
@@ -96,8 +96,8 @@ public:
o = std::move(temp);
}
- //! Replaces `handle::clone()` with a `path_handle returning edition`
- result<path_handle> clone() const noexcept
+ //! A `path_handle` returning edition of `handle::clone()`
+ result<path_handle> clone_to_path_handle() const noexcept
{
OUTCOME_TRY(newh, handle::clone());
return path_handle(std::move(newh));