Ticket #1617: gcc43-spirit-1617.patch
File gcc43-spirit-1617.patch, 1.0 KB (added by , 14 years ago) |
---|
-
libs/spirit/classic/test/mix_and_match_trees.cpp
old new 54 54 55 55 typedef rule<ast_scanner> ast_rule; 56 56 typedef rule<pt_scanner> pt_rule; 57 typedef rule<Scanner> rule ;57 typedef rule<Scanner> rule_; 58 58 59 59 definition(my_grammar const & /* self */) 60 60 { … … 62 62 start_ = gen_pt_node_d[ pt_rule_ ]; 63 63 } 64 64 65 rule const & start() const65 rule_ const & start() const 66 66 { 67 67 return start_; 68 68 } 69 69 70 rule start_;70 rule_ start_; 71 71 ast_rule ast_rule_; 72 72 pt_rule pt_rule_; 73 73 }; -
libs/spirit/classic/test/numerics_tests.cpp
old new 11 11 #include <boost/spirit/include/classic_assign_actor.hpp> 12 12 #include <iostream> 13 13 #include <boost/detail/lightweight_test.hpp> 14 #include <climits> 14 15 15 16 using namespace std; 16 17 using namespace BOOST_SPIRIT_CLASSIC_NS;