From f06badcfd36b7a748e77d9b733c7ac3c6e2173e4 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 28 May 2018 08:26:19 +1000 Subject: [PATCH] Fix clang compilation --- src/option_types.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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