From e7c4e87ac4f82175d3a7287908e6481abd6ec2ec Mon Sep 17 00:00:00 2001
From: Max Kellermann <mk@cm4all.com>
Date: Fri, 23 Oct 2020 11:59:15 +0200
Subject: [PATCH] util/TemplateString: remove unnecessary implementation for
 static variable

This is obsolete since C++17.
---
 src/util/TemplateString.hxx | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/util/TemplateString.hxx b/src/util/TemplateString.hxx
index fe482d066..15f99f280 100644
--- a/src/util/TemplateString.hxx
+++ b/src/util/TemplateString.hxx
@@ -43,9 +43,6 @@ struct Construct {
 	static constexpr std::size_t size = sizeof...(_value);
 };
 
-template<char... _value>
-constexpr char Construct<_value...>::value[];
-
 /**
  * An empty string.
  */