Make C++ mutex methods constant.
Closes #1729. Co-authored-by: Diego Fonseca <fonseca.diego.feeshy@gmail.com>
This commit is contained in:
@@ -13,9 +13,9 @@ namespace lime {
|
||||
Mutex ();
|
||||
~Mutex ();
|
||||
|
||||
bool Lock ();
|
||||
bool TryLock ();
|
||||
bool Unlock ();
|
||||
bool Lock () const;
|
||||
bool TryLock () const;
|
||||
bool Unlock () const;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user