Add missing handle_type_name<slice> specialization (discovered only through global testing).

This commit is contained in:
Ralf W. Grosse-Kunstleve 2023-10-21 23:55:33 -07:00
parent 7c8991a0a0
commit 63a48815fc

View File

@ -952,6 +952,10 @@ struct handle_type_name<sequence> {
static constexpr auto name = const_name("Sequence"); static constexpr auto name = const_name("Sequence");
}; };
template <> template <>
struct handle_type_name<slice> {
static constexpr auto name = const_name("slice");
};
template <>
struct handle_type_name<args> { struct handle_type_name<args> {
static constexpr auto name = const_name("*args"); static constexpr auto name = const_name("*args");
}; };