diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 22:20:53 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 22:20:53 +0200 |
commit | fa60b9ae94a61c71da2b7dd7305eb191612bc6e6 (patch) | |
tree | 6cff6f0e2ba340f8c31b4ef6471bd32d4eef1a27 /src/fs/Path.cxx | |
parent | 0d33ae52c6f150d7231a85ea83a164cbb27c10bc (diff) | |
download | mpd-fa60b9ae94a61c71da2b7dd7305eb191612bc6e6.tar.gz mpd-fa60b9ae94a61c71da2b7dd7305eb191612bc6e6.tar.xz mpd-fa60b9ae94a61c71da2b7dd7305eb191612bc6e6.zip |
fs/Path: move path_domain to Domain.hxx
Diffstat (limited to 'src/fs/Path.cxx')
-rw-r--r-- | src/fs/Path.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/fs/Path.cxx b/src/fs/Path.cxx index 654a517bb..be2661f63 100644 --- a/src/fs/Path.cxx +++ b/src/fs/Path.cxx @@ -19,11 +19,11 @@ #include "config.h" #include "Path.hxx" +#include "Domain.hxx" #include "Limits.hxx" #include "ConfigGlobal.hxx" #include "system/FatalError.hxx" #include "util/Error.hxx" -#include "util/Domain.hxx" #include "Log.hxx" #include "Compiler.h" @@ -47,8 +47,6 @@ */ static constexpr size_t MPD_PATH_MAX_UTF8 = (MPD_PATH_MAX - 1) * 4 + 1; -const Domain path_domain("path"); - static std::string fs_charset; inline Path::Path(Donate, pointer _value) |