util/Alloc: remove bogus "unused" attribute

This commit is contained in:
Max Kellermann 2014-11-27 18:21:50 +01:00
parent 737a56a030
commit 84c519df09

View File

@ -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);
}