id summary reporter owner description type status milestone component version severity resolution keywords cc 6948 Boost::spirit::karma generator bug yaoyuan1216@… Hartmut Kaiser "I wanna save a generator so that I can call it anytime without writing duplicate codes. Here is my code: #include #include #include #include //auto par = '{' << -(boost::spirit::karma::int_ % ',') << '}';//This would lead error! int main(){ using namespace std; namespace karma = boost::spirit::karma; list l{1, 2, 4}; auto par = '{' << -(boost::spirit::karma::int_ % ',') << '}';//This would not! cout<