|
@@ -572,7 +572,8 @@ static force_inline void ModelSetNumberToProperty(__unsafe_unretained id model,
|
|
|
((void (*)(id, SEL, uint32_t))(void *) objc_msgSend)((id)model, meta->_setter, (uint32_t)num.unsignedIntValue);
|
|
|
} break;
|
|
|
case YYEncodingTypeInt64: {
|
|
|
- ((void (*)(id, SEL, int64_t))(void *) objc_msgSend)((id)model, meta->_setter, (int64_t)num.longLongValue);
|
|
|
+ ((void (*)(id, SEL, int64_t))(void *) objc_msgSend)((id)model, meta->_setter, (int64_t)num.stringValue.longLongValue);
|
|
|
+ break;
|
|
|
}
|
|
|
case YYEncodingTypeUInt64: {
|
|
|
((void (*)(id, SEL, uint64_t))(void *) objc_msgSend)((id)model, meta->_setter, (uint64_t)num.unsignedLongLongValue);
|