
27 Sep
2009
27 Sep
'09
2:39 a.m.
AMDG Christian Henning wrote:
Thanks for the quick reply. This looks very interesting. But the following snippets bombs on my machine using VS2005.
#include
#include namespace qi = boost::spirit::qi; namespace ascii = boost::spirit::qi::ascii;
int _tmain(int argc, _TCHAR* argv[]) { std::string number( "123" );
int i; qi::parse( number.begin() , number.end() , qi::int_ , ascii::blank , i );
return 0; }
Try using phrase_parse instead of parse. In Christ, Steven Watanabe