Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. unary = '-' >> unary[_val = phoenix::construct<AST::unary>('-', _1)]
  2. | '!' >> unary[_val = phoenix::construct<AST::unary>('!', _1)]
  3. | '+' >> unary[_val = phoenix::construct<AST::unary>('+', _1)]
  4. | '~' >> unary[_val = phoenix::construct<AST::unary>('~', _1)]
  5. | val[_val = _1];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement