Skip to content

Commit b7b86f7

Browse files
authored
Merge pull request #188 from spekke/master
Xcode 9 - Fix warning "This function declaration is not a prototype"
2 parents 7c048e9 + f18cd04 commit b7b86f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Expecta/EXPDefines.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#ifndef Expecta_EXPDefines_h
1010
#define Expecta_EXPDefines_h
1111

12-
typedef void (^EXPBasicBlock)();
13-
typedef id (^EXPIdBlock)();
14-
typedef BOOL (^EXPBoolBlock)();
15-
typedef NSString *(^EXPStringBlock)();
12+
typedef void (^EXPBasicBlock)(void);
13+
typedef id (^EXPIdBlock)(void);
14+
typedef BOOL (^EXPBoolBlock)(void);
15+
typedef NSString *(^EXPStringBlock)(void);
1616

1717
#endif

0 commit comments

Comments
 (0)