Add return statement to thread:🆔:operator=().

This commit is contained in:
David Capello 2010-10-02 20:23:42 -03:00
parent 3f7333b9ed
commit 3aad83b353

View File

@ -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;