From f18cd042b17d28811ae308c0c7b9e4b20d2068e9 Mon Sep 17 00:00:00 2001 From: Andre Stenvall Date: Fri, 30 Jun 2017 13:28:30 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20warning=20=E2=80=98This=20function=20decl?= =?UTF-8?q?aration=20is=20not=20a=20prototype=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Expecta/EXPDefines.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Expecta/EXPDefines.h b/Expecta/EXPDefines.h index 52af721..f37f697 100644 --- a/Expecta/EXPDefines.h +++ b/Expecta/EXPDefines.h @@ -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