mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-30 15:32:38 +00:00
Add return statement to thread:🆔:operator=().
This commit is contained in:
parent
3f7333b9ed
commit
3aad83b353
@ -28,7 +28,7 @@ namespace base { // Based on C++0x threads lib
|
||||
bool operator> (const id& y) const { return m_native_id > y.m_native_id; }
|
||||
bool operator>=(const id& y) const { return m_native_id >= y.m_native_id; }
|
||||
|
||||
id& operator=(const id& y) { m_native_id = y.m_native_id; }
|
||||
id& operator=(const id& y) { m_native_id = y.m_native_id; return *this; }
|
||||
};
|
||||
|
||||
typedef void* native_handle_type;
|
||||
|
Loading…
x
Reference in New Issue
Block a user