Guest User

Untitled

a guest
Feb 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. void Parser::pop() {
  2. if (operand.size() < 1) throw ParserException("stack is empty:(");
  3. else {
  4. operand.pop_back();
  5. }}
Add Comment
Please, Sign In to add comment