template< int N > struct tuple_element<N,foo>... Should be template<size_t N> struct tuple_element<N,foo>...
template< int N > struct tuple_element<N,foo>...
Should be
template<size_t N> struct tuple_element<N,foo>...