gpt4 book ai didi

c++ - boost::spirit::karma:将 no_delimit 与替代项一起使用

转载 作者:行者123 更新时间:2023-11-30 04:20:31 27 4
gpt4 key购买 nike

我试图关闭围绕包含替代运算符 ('|') 的规则的定界,但我收到有关不兼容定界符的编译错误。例如,我从 boost 中获取了 calc2_ast_dump.cpp 示例,并将 struct dump_ast 中的 ast_node 规则修改为:

ast_node %= no_delimit[int_ | binary_node | unary_node];

但这给出了编译错误:

/usr/include/boost/function/function_template.hpp:754:17: note: candidate function not viable: no known conversion
from 'const
boost::spirit::karma::detail::unused_delimiter<boost::spirit::karma::any_space<boost::spirit::char_encoding::ascii>
>' to 'const boost::spirit::karma::any_space<boost::spirit::char_encoding::ascii>' for 3rd argument
result_type operator()(BOOST_FUNCTION_PARMS) const

以及 boost/spirit/home/karma/nonterminal/rule.hpp 中的相关注释:

// If you are seeing a compilation error here stating that the
// third parameter can't be converted to a karma::reference
// then you are probably trying to use a rule or a grammar with
// an incompatible delimiter type.

在我自己的项目中,我能够毫无问题地执行“no_delimit[a << b]”(使用 karma::space 分隔符)。

关于替代方案,我是否遗漏了什么?为什么 no_delimit 与“<<”一起使用,而不是“|”?

我使用的是 boost 1.48,是否有我需要修复的错误?

最佳答案

您需要修改规则声明以反射(reflect)它们未使用定界符这一事实。

假设您不想要任何定界,无论如何:

template <typename OuputIterator>
struct dump_ast
: karma::grammar<OuputIterator, expression_ast()>
{
dump_ast() : dump_ast::base_type(ast_node)
{
ast_node %= int_ | binary_node | unary_node;
binary_node %= '(' << ast_node << char_ << ast_node << ')';
unary_node %= '(' << char_ << ast_node << ')';
}

karma::rule<OuputIterator, expression_ast()> ast_node;
karma::rule<OuputIterator, binary_op()> binary_node;
karma::rule<OuputIterator, unary_op()> unary_node;
};

观看直播 http://liveworkspace.org/code/4edZlj$0

关于c++ - boost::spirit::karma:将 no_delimit 与替代项一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15234616/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com