forked from boostorg/fusion
Fix fusion::at<vector<...>, N> for C array types
This commit is contained in:
@@ -47,7 +47,7 @@ namespace boost { namespace fusion
|
||||
struct apply
|
||||
{
|
||||
typedef typename boost::remove_cv<Sequence>::type seq;
|
||||
typedef decltype(seq::template value_at_impl<N::value>(boost::declval<seq*>())) type;
|
||||
typedef typename decltype(seq::template value_at_impl<N::value>(boost::declval<seq*>()))::type type;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user