From 9b26d451e462b83d25c07f6461b3641160df0662 Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@musicpd.org>
Date: Fri, 15 Mar 2019 20:43:21 +0100
Subject: [PATCH] test/MakeTag: remove `static`

---
 test/MakeTag.hxx | 6 +++---
 1 file 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;