Commit 9b26d451 authored by Max Kellermann's avatar Max Kellermann

test/MakeTag: remove `static`

parent 137ffba1
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment