diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 22:13:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 22:29:03 +0200 |
commit | 080ee87e07f0037e559abbea6f7db73602af5137 (patch) | |
tree | 66464d51200132175724333164a43d65efb2dfe1 /src/Mapper.cxx | |
parent | fa60b9ae94a61c71da2b7dd7305eb191612bc6e6 (diff) |
fs/Path: move configuration code to Config.cxx
Diffstat (limited to 'src/Mapper.cxx')
-rw-r--r-- | src/Mapper.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Mapper.cxx b/src/Mapper.cxx index 6e3b894dd..b89f83cd7 100644 --- a/src/Mapper.cxx +++ b/src/Mapper.cxx @@ -26,6 +26,7 @@ #include "Directory.hxx" #include "Song.hxx" #include "fs/Path.hxx" +#include "fs/Charset.hxx" #include "fs/FileSystem.hxx" #include "fs/DirectoryReader.hxx" #include "util/Domain.hxx" @@ -236,7 +237,7 @@ map_fs_to_utf8(const char *path_fs) return std::string(); } - return Path::ToUTF8(path_fs); + return PathToUTF8(path_fs); } const Path & |