remove deduction guide for fixed_string

This commit is contained in:
Alexey Ochapov 2020-12-07 23:36:21 +03:00
parent b81bf00c9b
commit e7d035d55d
No known key found for this signature in database
GPG Key ID: 9DC52E8F031B8DA8

View File

@ -55,9 +55,6 @@ template <typename Char, size_t N> struct fixed_string {
Char data[N]{};
};
template <typename Char, size_t N>
fixed_string(const Char (&str)[N]) -> fixed_string<Char, N>;
template <typename Char, size_t N, fixed_string<Char, N> Str>
struct udl_compiled_string : compiled_string {
using char_type = Char;