test/MakeTag: remove `static`

This commit is contained in:
Max Kellermann 2019-03-15 20:43:21 +01:00
parent 137ffba1b4
commit 9b26d451e4
1 changed files with 3 additions and 3 deletions

View File

@ -21,13 +21,13 @@
#include "tag/Tag.hxx"
#include "util/Compiler.h"
static void
inline void
BuildTag(gcc_unused TagBuilder &tag)
{
}
template<typename... Args>
static void
inline void
BuildTag(TagBuilder &tag, TagType type, const char *value, Args&&... args)
{
tag.AddItem(type, value);
@ -35,7 +35,7 @@ BuildTag(TagBuilder &tag, TagType type, const char *value, Args&&... args)
}
template<typename... Args>
static Tag
inline Tag
MakeTag(Args&&... args)
{
TagBuilder tag;