Fix i386 build (once again 'unsigned long' vs 'unsigned int')

This commit is contained in:
Lubos Dolezel 2016-11-28 14:42:02 +01:00
parent a479953317
commit 14976be0a9

View File

@ -47,7 +47,7 @@ CFClass::CFClass(const char *name)
// update because we are now doing our own reference counting
version |= _kCFRuntimeCustomRefCount; // see ma, no hands!
refcount = refCountForType;
refcount = (decltype(refcount)) refCountForType;
// register
typeID = _CFRuntimeRegisterClass(this);