test/MakeTag: remove static

This commit is contained in:
Max Kellermann 2019-03-15 20:43:21 +01:00
parent 137ffba1b4
commit 9b26d451e4

View File

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