id summary reporter owner description type status milestone component version severity resolution keywords cc 5411 Fusion: zip_view not working with insert_range joe@… Joel de Guzman "In this simple example it appears that zip_view doesn't work with insert_range. That's a bug, right? int main() { using boost::fusion::vector; vector v(3.14,2.17); // Doesn't compile. cout << insert_range( v, next(begin(v)), zip(v, v) ) << endl; // Does compile. cout << insert_range(v, next(begin(v)), as_vector( zip(v, v) ) ) << endl; // Why do I need to convert the zip_view to a vector for insert_range to work? return 0; } " Bugs closed To Be Determined fusion Boost 1.47.0 Problem fixed