Skip to content

Commit f18cd04

Browse files
committed
Fix warning ‘This function declaration is not a prototype’
1 parent 7c048e9 commit f18cd04

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)