mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-08 21:17:50 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user