Boost::Spirit Expression Parser

It isn’t entirely clear to me what you are trying to achieve. Most importantly, are you not worried about operator associativity? I’ll just show simple answers based on using right-recursion – this leads to left-associative operators being parsed. The straight answer to your visible question would be to juggle a fusion::vector2<char, ast::expression> – which isn’t … Read more