summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorMax Kellermann <mk@cm4all.com>2020-10-23 11:59:15 +0200
committerMax Kellermann <max@musicpd.org>2020-11-30 22:13:13 +0100
commite7c4e87ac4f82175d3a7287908e6481abd6ec2ec (patch)
treeb6ea6782abd1c996fbc1bcd49a8f8f17878dc648 /src/util
parentde58bfbb7f7302244ba7d3c902234b746f362068 (diff)
util/TemplateString: remove unnecessary implementation for static variable
This is obsolete since C++17.
Diffstat (limited to 'src/util')
-rw-r--r--src/util/TemplateString.hxx3
1 files changed, 0 insertions, 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.
*/