我有以下代码:
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有关。
有关如何使其正常工作的任何提示?
编译器错误如下:
错误:没有匹配函数调用'std::pair::pair(const int&)'