From 77900b61af7996efa05e7b1d8c5a9b022f55f639 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Mon, 14 Aug 2017 17:11:10 -0600 Subject: [PATCH] ircd: Remove unnecessary lexical template specialization declaration. --- include/ircd/lexical.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/ircd/lexical.h b/include/ircd/lexical.h index e22ded35e..0850cfad2 100644 --- a/include/ircd/lexical.h +++ b/include/ircd/lexical.h @@ -54,7 +54,6 @@ template<> std::string &lex_cast(std::string &); // tri template<> std::string lex_cast(const std::string &); // trivial template<> std::string_view lex_cast(const std::string_view &); // trivial template<> std::string lex_cast(const string_view &); // trivial -template<> string_view lex_cast(const string_view &); // trivial template<> long double lex_cast(const string_view &); template<> double lex_cast(const string_view &); template<> ulong lex_cast(const string_view &);