From c48733e34f5dcefb9e3c74a5b3416aeea54aa336 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 25 Oct 2014 00:07:25 +0200 Subject: fs/Charset: work around clang's -Wunused-const-variable MPD_PATH_MAX_UTF8 is only used by GLib-specific code currently. --- src/fs/Charset.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/fs/Charset.cxx b/src/fs/Charset.cxx index 2d289c3b8..abf4d8287 100644 --- a/src/fs/Charset.cxx +++ b/src/fs/Charset.cxx @@ -34,6 +34,8 @@ #include #include +#ifdef HAVE_GLIB + /** * Maximal number of bytes required to represent path name in UTF-8 * (including nul-terminator). @@ -44,7 +46,6 @@ */ static constexpr size_t MPD_PATH_MAX_UTF8 = (MPD_PATH_MAX - 1) * 4 + 1; -#ifdef HAVE_GLIB static std::string fs_charset; gcc_pure -- cgit v1.2.3