remove semilon

Signed-off-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
This commit is contained in:
Krishna Vedala
2020-06-06 13:37:55 -04:00
parent 8a2bef9c20
commit 869245dff5

View File

@@ -38,7 +38,7 @@ class stack {
~stack() {}
/** Determine whether the stack is empty */
bool isEmptyStack() { return (stackTop == NULL); };
bool isEmptyStack() { return (stackTop == NULL); }
/** Add new item to the stack */
void push(Type item) {