introspection/enum_simple: increase the search range

This commit is contained in:
Danny Robson 2022-06-01 15:41:21 +10:00
parent 10b21cb497
commit cdaa5ebd41

View File

@ -129,7 +129,7 @@ namespace cruft::introspection {
EnumT
from (std::string_view name)
{
return _from<EnumT (0), EnumT (5)> (name);
return _from<EnumT (0), EnumT (31)> (name);
}