Windows build fix

fixes #11096
This commit is contained in:
Michael Friedrich 2016-02-04 23:15:48 +01:00
parent 4375124a9a
commit f06f6d4d86
1 changed files with 6 additions and 3 deletions

View File

@ -117,7 +117,11 @@ private:
Object(const Object& other);
Object& operator=(const Object& rhs);
# ifndef _WIN32
intptr_t m_References;
# else /* _WIN32 */
uintptr_t m_References;
# endif /* _WIN32 */
mutable uintptr_t m_Mutex;
#ifdef I2_DEBUG
@ -153,11 +157,10 @@ inline void intrusive_ptr_add_ref(Object *object)
inline void intrusive_ptr_release(Object *object)
{
intptr_t refs;
#ifdef _WIN32
refs = InterlockedDecrement(&object->m_References);
uintptr_t refs = InterlockedDecrement(&object->m_References);
#else /* _WIN32 */
refs = __sync_sub_and_fetch(&object->m_References, 1);
intptr_t refs = __sync_sub_and_fetch(&object->m_References, 1);
#endif /* _WIN32 */
ASSERT(refs >= 0);