General: Make member functions const where applicable

These functions don't modify instance state, so they can be marked
const.
This commit is contained in:
Lioncash
2019-08-16 02:06:51 -04:00
committed by Phillip Stephens
parent 1822b555fa
commit 80c1103b44
7 changed files with 27 additions and 28 deletions

View File

@@ -249,7 +249,7 @@ public:
m_backcv.wait(lk, [this]() { return m_outstandingTasks == 0 || !m_running; });
}
bool isReady() {
bool isReady() const {
return m_outstandingTasks == 0 || !m_running;
}