1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-20 15:40:32 +00:00

Remove redundant else

This commit is contained in:
elsid 2021-07-10 12:19:59 +02:00
parent eece47f70e
commit d4a2dab9d9
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

View File

@ -93,8 +93,7 @@ osg::ref_ptr<WorkItem> WorkQueue::removeWorkItem()
mQueue.pop_front();
return item;
}
else
return nullptr;
return nullptr;
}
unsigned int WorkQueue::getNumItems() const