lipengwei
2020-05-27 7cdaa24f3ba637804aca9247ae809c4cc1acc6ed
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