diff --git a/data_structures/stack.h b/data_structures/stack.h index a27d2462b..f4b8992e7 100644 --- a/data_structures/stack.h +++ b/data_structures/stack.h @@ -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) {