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/handle.hpp')
-rw-r--r--include/llfio/v2.0/handle.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llfio/v2.0/handle.hpp b/include/llfio/v2.0/handle.hpp
index a99887b0..27c7a613 100644
--- a/include/llfio/v2.0/handle.hpp
+++ b/include/llfio/v2.0/handle.hpp
@@ -341,7 +341,7 @@ inline std::ostream &operator<<(std::ostream &s, const handle &v)
if(v.is_valid())
{
auto _currentpath = v.current_path();
- std::string currentpath = !_currentpath ? std::string(_currentpath.error().message().c_str()) : _currentpath.value().u8string();
+ std::string currentpath = !_currentpath ? std::string(_currentpath.error().message().c_str()) : _currentpath.value().string();
return s << "llfio::handle(" << v._v._init << ", " << currentpath << ")";
}
return s << "llfio::handle(closed)";
@@ -470,7 +470,7 @@ namespace detail
tls.reentering_self = false;
if(currentpath_)
{
- auto currentpath = currentpath_.value().u8string();
+ auto currentpath = currentpath_.value().string();
dest._thread_id = tls.this_thread_id;
#ifdef _MSC_VER
#pragma warning(push)