You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XCode 9 has turned on by default the -Wstrict-prototypes, which causes the warning "This block declaration is not a prototype" when you have a block declaration with empty parenthesis: void (^)(). The recommended fix is to explicitly declare the argument void void (^)(void). Also check the answer here
The text was updated successfully, but these errors were encountered:
csknns
added a commit
to csknns/PPRevealSideViewController
that referenced
this issue
Nov 19, 2017
XCode 9 has turned on by default the -Wstrict-prototypes, which causes the warning "This block declaration is not a prototype" when you have a block declaration with empty parenthesis:
void (^)()
. The recommended fix is to explicitly declare the argument voidvoid (^)(void)
. Also check the answer hereThe text was updated successfully, but these errors were encountered: