Flipped shift operator direction to match spirit

This commit is contained in:
Jonathan Turner
2009-06-01 19:18:55 +00:00
parent f0088d8ade
commit fc3b9de2d2
3 changed files with 11 additions and 11 deletions

View File

@@ -77,7 +77,7 @@ struct Rule {
return Rule(boost::bind(Or_Rule, _1, _2, _3, _4, _5, *this, rhs));
}
Rule operator<<(const Rule &rhs) {
Rule operator>>(const Rule &rhs) {
return Rule(boost::bind(And_Rule, _1, _2, _3, _4, _5, *this, rhs));
}