aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/Alloc.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-11-27 18:21:50 +0100
committerMax Kellermann <max@duempel.org>2014-11-27 18:21:50 +0100
commit84c519df09cf6dc1add3f7c1c529a88c4d9e6175 (patch)
treeb06dfb5b84f400509e93f633d8d4bcc1e61d9cf1 /src/util/Alloc.cxx
parent737a56a0302b1030e1071c7be9add7bdca955e32 (diff)
downloadmpd-84c519df09cf6dc1add3f7c1c529a88c4d9e6175.tar.gz
mpd-84c519df09cf6dc1add3f7c1c529a88c4d9e6175.tar.xz
mpd-84c519df09cf6dc1add3f7c1c529a88c4d9e6175.zip
util/Alloc: remove bogus "unused" attribute
Diffstat (limited to 'src/util/Alloc.cxx')
-rw-r--r--src/util/Alloc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Alloc.cxx b/src/util/Alloc.cxx
index 403ad535d..48c450849 100644
--- a/src/util/Alloc.cxx
+++ b/src/util/Alloc.cxx
@@ -84,7 +84,7 @@ FillLengths(size_t *lengths, const char *a, Args&&... args)
template<>
inline size_t
-FillLengths(gcc_unused size_t *lengths, const char *a)
+FillLengths(size_t *lengths, const char *a)
{
return *lengths = strlen(a);
}