fixed: warning: this block declaration is not a prototype [-Wstrict-prototypes]

This commit is contained in:
Jasdeep 2018-01-04 21:18:50 -05:00 committed by GitHub
parent 0860571e1e
commit 97ec0a2128
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
typedef void (^UploadCompleteCallback)(NSString*, NSURLResponse *); typedef void (^UploadCompleteCallback)(NSString*, NSURLResponse *);
typedef void (^UploadErrorCallback)(NSError*); typedef void (^UploadErrorCallback)(NSError*);
typedef void (^UploadBeginCallback)(); typedef void (^UploadBeginCallback)(void);
typedef void (^UploadProgressCallback)(NSNumber*, NSNumber*); typedef void (^UploadProgressCallback)(NSNumber*, NSNumber*);
@interface RNFSUploadParams : NSObject @interface RNFSUploadParams : NSObject