DevMate / DevMateKit

Development and Distribution Assistance Platform for Mac Developers
https://devmate.com
21 stars 3 forks source link

SUAppcastItem.h - Missing return type #5

Closed macmade closed 9 years ago

macmade commented 9 years ago

Methods initWithDictionary: miss return types.

Compiling with -Wmissing-method-return-type will issue an error.

- initWithDictionary:(NSDictionary *)dict;
- initWithDictionary:(NSDictionary *)dict failureReason:(NSString**)error;

Should be:

- (instancetype)initWithDictionary:(NSDictionary *)dict;
- (instancetype)initWithDictionary:(NSDictionary *)dict failureReason:(NSString**)error;
macmade commented 9 years ago

Fixed in pre-release version 1.3: ca9686875b94f00b20bac92c94182204e631312f. Thanks : )