From 44b9197354dc1f69c6de6a2f4f3e5a5722d05b62 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 28 Feb 2015 22:07:01 +0100 Subject: Mapper: use class Path --- src/Mapper.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Mapper.cxx') diff --git a/src/Mapper.cxx b/src/Mapper.cxx index 1dff3949c..14718ca09 100644 --- a/src/Mapper.cxx +++ b/src/Mapper.cxx @@ -86,8 +86,10 @@ map_uri_fs(const char *uri) } std::string -map_fs_to_utf8(const char *path_fs) +map_fs_to_utf8(Path _path_fs) { + auto path_fs = _path_fs.c_str(); + if (PathTraitsFS::IsSeparator(path_fs[0])) { if (instance->storage == nullptr) return std::string(); -- cgit v1.2.3