mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-03 10:35:34 +08:00
remove semilon
Signed-off-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user