From f082c62bb40cad3ee93abd5432777ac0905eb374 Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Fri, 27 Sep 2019 11:16:00 +0800 Subject: [PATCH] 3.8.3 --- frameworks/Bolts.framework/Headers/BFExecutor.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/Bolts.framework/Headers/BFExecutor.h b/frameworks/Bolts.framework/Headers/BFExecutor.h index afa4f3d..694c8a5 100644 --- a/frameworks/Bolts.framework/Headers/BFExecutor.h +++ b/frameworks/Bolts.framework/Headers/BFExecutor.h @@ -37,7 +37,7 @@ Returns a new executor that uses the given block to execute continuations. @param block The block to use. */ -+ (instancetype)executorWithBlock:(void(^)(void(^block)()))block; ++ (instancetype)executorWithBlock:(void(^)(void(^block)(void)))block; /*! Returns a new executor that runs continuations on the given queue. @@ -55,7 +55,7 @@ Runs the given block using this executor's particular strategy. @param block The block to execute. */ -- (void)execute:(void(^)())block; +- (void)execute:(void(^)(void))block; @end -- Gitblit v1.8.0