master taken over

This commit is contained in:
Robin Müller 2020-10-01 20:36:43 +02:00
parent f2c07ee9c6
commit 148bbb4be4

View File

@ -154,22 +154,22 @@ public:
}
bool empty() {
if(_size == 0) {
return true;
}
else {
return false;
}
if(_size == 0) {
return true;
}
else {
return false;
}
}
bool full() {
if(_size >= theMap.maxSize()) {
return true;
}
else {
return false;
}
}
bool full() {
if(_size >= theMap.maxSize()) {
return true;
}
else {
return false;
}
}
void clear() {
_size = 0;