remove semicolons after functions in a class

Signed-off-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
This commit is contained in:
Krishna Vedala
2020-06-06 13:02:36 -04:00
parent d97f7c15f6
commit b3f0b75a08
2 changed files with 16 additions and 16 deletions

View File

@@ -26,20 +26,20 @@ class queue {
}
std::cout << std::endl;
std::cout << "Size of queue: " << size << std::endl;
};
}
/** Default constructor*/
queue() {
queueFront = NULL;
queueRear = NULL;
size = 0;
};
}
/** Destructor */
~queue(){};
~queue() {}
/** Determine whether the queue is empty */
bool isEmptyQueue() { return (queueFront == NULL); };
bool isEmptyQueue() { return (queueFront == NULL); }
/** Add new item to the queue */
void enQueue(Kind item) {
@@ -55,13 +55,13 @@ class queue {
queueRear = queueRear->next;
}
size++;
};
}
/** Return the first element of the queue */
Kind front() {
assert(queueFront != NULL);
return queueFront->data;
};
}
/** Remove the top element of the queue */
void deQueue() {
@@ -74,10 +74,10 @@ class queue {
} else {
std::cout << "Queue is empty !" << std::endl;
}
};
}
/** Clear queue */
void clear() { queueFront = NULL; };
void clear() { queueFront = NULL; }
private:
node<Kind> *queueFront; /**< Pointer to the front of the queue */