为什么编译器允许下面的行没有错误或警告?似乎它应该抱怨“onSuccess”声明和定义中的参数不匹配。
我正在使用 Xcode 4.6 (LLVM 4.2)
void (^onSuccess)() = ^(AFHTTPRequestOperation *operation, id responseObject) {
};
为什么编译器允许下面的行没有错误或警告?似乎它应该抱怨“onSuccess”声明和定义中的参数不匹配。
我正在使用 Xcode 4.6 (LLVM 4.2)
void (^onSuccess)() = ^(AFHTTPRequestOperation *operation, id responseObject) {
};