Skip to content

Commit

Permalink
Merge pull request #188 from spekke/master
Browse files Browse the repository at this point in the history
Xcode 9 - Fix warning "This function declaration is not a prototype"
  • Loading branch information
orta committed Jun 30, 2017
2 parents 7c048e9 + f18cd04 commit b7b86f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Expecta/EXPDefines.h
Expand Up @@ -9,9 +9,9 @@
#ifndef Expecta_EXPDefines_h
#define Expecta_EXPDefines_h

typedef void (^EXPBasicBlock)();
typedef id (^EXPIdBlock)();
typedef BOOL (^EXPBoolBlock)();
typedef NSString *(^EXPStringBlock)();
typedef void (^EXPBasicBlock)(void);
typedef id (^EXPIdBlock)(void);
typedef BOOL (^EXPBoolBlock)(void);
typedef NSString *(^EXPStringBlock)(void);

#endif

0 comments on commit b7b86f7

Please sign in to comment.