try fix pipeline

This commit is contained in:
ado 2021-01-07 22:57:55 +01:00
parent 0ac058c3f7
commit f6b0201bf5

View File

@ -134,7 +134,7 @@ public:
composite<Ts..., T> composite_with(T&& new_value) {
auto merged_values =
std::tuple_cat(std::move(values_),
std::tuple{parser_.valid()
std::tuple<T>{parser_.valid()
? std::forward<T>(new_value)
: std::nullopt});
return {std::move(merged_values), parser_};