我有以下代码:
std::string test("1.1"); std::pair<int,int> d; bool r = qi::phrase_parse( test.begin(),test.end(),qi::int_ >> '.' >> qi::int_,space,d );
所以我试图解析字符串测试,将结果放在std :: pair d中.但是这并不奏效,我怀疑它与Compound Attribute Rules有关.
任何暗示如何让这个工作?
编译器错误如下:
error: no matching function for call
to ‘std::pair::pair(const
int&)’