aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Remote/FSTExponentialBackoff.h
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-10-09 13:41:39 -0700
committerGravatar GitHub <noreply@github.com>2017-10-09 13:41:39 -0700
commitb2a169f08a73300d0ee51c5cbd211d29de1cf62f (patch)
tree53c4d7df373ed09ef6ce628af78ade967d651d49 /Firestore/Source/Remote/FSTExponentialBackoff.h
parent8156da3f32e3b41e4a1222d05261be47be67b0d6 (diff)
Fix warnings exposed by Xcode 9.1 in Firestore source (#354)
Diffstat (limited to 'Firestore/Source/Remote/FSTExponentialBackoff.h')
-rw-r--r--Firestore/Source/Remote/FSTExponentialBackoff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/Source/Remote/FSTExponentialBackoff.h b/Firestore/Source/Remote/FSTExponentialBackoff.h
index 0bee2bd..674b1ac 100644
--- a/Firestore/Source/Remote/FSTExponentialBackoff.h
+++ b/Firestore/Source/Remote/FSTExponentialBackoff.h
@@ -72,7 +72,7 @@ NS_ASSUME_NONNULL_BEGIN
*
* @param block The block to run.
*/
-- (void)backoffAndRunBlock:(void (^)())block;
+- (void)backoffAndRunBlock:(void (^)(void))block;
@end