Reputation: 341
At build time, it returns an error on this line
typedef void(^SDWebImageNoParamsBlock)(voidvoid);
The error that Xcode gives me is:
A parameter list without types is only allowed in a function definition
thanks all :)
Upvotes: 1
Views: 103
Reputation: 60
Check line number 98 you are entered two time void
typedef void(^SDWebImageNoParamsBlock)(void);
replace this line
Upvotes: 1
Reputation: 100503
It should be
typedef void(^SDWebImageNoParamsBlock)(void);
This a screenshot from the file you have may be you have edited it mistakenly when typing somehow
Upvotes: 4