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:
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));