Commit 7793a7a4 authored by neverlord's avatar neverlord

changed to match new option interface

parent d020438a
...@@ -72,7 +72,7 @@ auto moving_tuple_cast(any_tuple& tup) ...@@ -72,7 +72,7 @@ auto moving_tuple_cast(any_tuple& tup)
>::type> >::type>
{ {
typedef decltype(moving_tuple_cast<T...>(tup)) result_type; typedef decltype(moving_tuple_cast<T...>(tup)) result_type;
typedef typename result_type::value_type tuple_type; typedef typename result_type::type tuple_type;
static constexpr auto impl = static constexpr auto impl =
get_wildcard_position<util::type_list<T...>>(); get_wildcard_position<util::type_list<T...>>();
return detail::tuple_cast_impl<impl, tuple_type, T...>::safe(tup); return detail::tuple_cast_impl<impl, tuple_type, T...>::safe(tup);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment