diff --git a/src/option_types.hh b/src/option_types.hh index c7b5d5f8..889dedcc 100644 --- a/src/option_types.hh +++ b/src/option_types.hh @@ -183,7 +183,7 @@ std::tuple option_from_string_impl(Meta::Type>, S auto elems = str | split(tuple_separator, '\\') | transform(unescape) | static_gather(); - return {option_from_string(Meta::Type{}, elems[I])...}; + return std::tuple{option_from_string(Meta::Type{}, elems[I])...}; } template