下面的代码,使用 boost::spirit,用于使用 boost 1.44 和 boost 1.49:
qi::string("a_token")
[
boost::phoenix::bind(&node_t::some_func, *qi::_val, true)
]
我将 boost 更新到 1.53 版,但现在这段代码不再编译了。g++ 抱怨
error: pointer to member type 'void (node_t::)(bool)' incompatible with object type 'boost::error_cant_deduce_type'
我不知道如何解决它。以下代码编译:
qi::string("a_token")
[
boost::phoenix::bind(&node_t::some_func, (node_t*)0, true)
]
所以我想问题出在 qi::val_... boost::spirit 的 API 是否改变了,还是我缺少包含文件?
我正在使用 g++4.7,带有--std=c++0x。
在这里,我尝试了一个小测试用例来重现问题。错误消息不一样(但它仍然很大!),但再次引用运算符似乎是问题所在。
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/spirit/include/phoenix_bind.hpp>
#include <boost/shared_ptr.hpp>
struct node_t
{
void foo(bool){}
};
int main()
{
namespace qi = boost::spirit::qi;
boost::spirit::qi::rule
<
std::string::const_iterator,
boost::shared_ptr<node_t>(),
boost::spirit::ascii::space_type
> rule;
rule = qi::string("true")
[boost::phoenix::bind(&node_t::foo, *qi::_val, true)];
}