From 869245dff526feaa588b65799570648b76a54518 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Sat, 6 Jun 2020 13:37:55 -0400 Subject: [PATCH] remove semilon Signed-off-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com> --- data_structures/stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {