summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-03-15 20:43:21 +0100
committerMax Kellermann <max@musicpd.org>2019-03-16 13:23:02 +0100
commit9b26d451e462b83d25c07f6461b3641160df0662 (patch)
tree317a50d2fb74ccce34e21e01e70fbcbd62210d95 /test
parent137ffba1b43ef54bc2056c5760bf9e3785e03a01 (diff)
test/MakeTag: remove `static`
Diffstat (limited to 'test')
-rw-r--r--test/MakeTag.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/MakeTag.hxx b/test/MakeTag.hxx
index 55147f4e8..4861583e5 100644
--- a/test/MakeTag.hxx
+++ b/test/MakeTag.hxx
@@ -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;