Skip to content

Commit

Permalink
Fix warning ‘This function declaration is not a prototype’
Browse files Browse the repository at this point in the history
  • Loading branch information
spekke committed Jun 30, 2017
1 parent 7c048e9 commit f18cd04
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 f18cd04

Please sign in to comment.