diff --git a/src/option_types.hh b/src/option_types.hh index 7cdfb48d..81dca3bd 100644 --- a/src/option_types.hh +++ b/src/option_types.hh @@ -27,9 +27,9 @@ template typename std::enable_if::value, String>::type option_type_name(Meta::Type) { - constexpr StringView type = with_bit_ops(Meta::Type{}) ? "flags" : "enum"; - auto name = enum_desc(Meta::Type{}); - return type + "(" + join(name | transform(std::mem_fn(&EnumDesc::name)), '|') + ")"; + return format("{}({})", with_bit_ops(Meta::Type{}) ? "flags" : "enum", + join(enum_desc(Meta::Type{}) | + transform(std::mem_fn(&EnumDesc::name)), '|')); } inline String option_to_string(int opt) { return to_string(opt); }