id summary reporter owner description type status milestone component version severity resolution keywords cc 5591 Inherited attributes and copy() function Öyvind Strand Joel de Guzman "rule::copy() and rule::alias() functions doesn't work when used on rules with inherited attributes. using namespace boost::spirit::qi; typedef std::string::iterator iter; rule a; rule a_cp; a_cp = a; //compiles a_cp = a.copy(); //compiles a_cp = a.alias(); //compiles rule b; rule b_cp; b_cp = b; //compiles b_cp = b.copy(); //fails to compile b_cp = b.alias(); //fails to compile" Bugs new To Be Determined spirit Boost 1.46.1 Problem