diff --git a/include/boost/fixed_string/fixed_string.hpp b/include/boost/fixed_string/fixed_string.hpp index d1e5728..0163181 100644 --- a/include/boost/fixed_string/fixed_string.hpp +++ b/include/boost/fixed_string/fixed_string.hpp @@ -2260,6 +2260,18 @@ template< fixed_string to_fixed_string(Integer x); +//------------------------------------------------------------------------------ +// +// Deduction Guides +// +//------------------------------------------------------------------------------ + +#if __cplusplus >= 201703L +template +fixed_string(CharT(&)[N]) -> + fixed_string>; +#endif + } // fixed_string } // boost