aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Core/FSTTypes.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/Core/FSTTypes.h
parent8156da3f32e3b41e4a1222d05261be47be67b0d6 (diff)
Fix warnings exposed by Xcode 9.1 in Firestore source (#354)
Diffstat (limited to 'Firestore/Source/Core/FSTTypes.h')
-rw-r--r--Firestore/Source/Core/FSTTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/Source/Core/FSTTypes.h b/Firestore/Source/Core/FSTTypes.h
index 8f1183c..c10f1bf 100644
--- a/Firestore/Source/Core/FSTTypes.h
+++ b/Firestore/Source/Core/FSTTypes.h
@@ -32,7 +32,7 @@ typedef NSNumber FSTBoxedTargetID;
* FSTVoidBlock is a block that's called when a specific event happens but that otherwise has
* no information associated with it.
*/
-typedef void (^FSTVoidBlock)();
+typedef void (^FSTVoidBlock)(void);
/**
* FSTVoidErrorBlock is a block that gets an error, if one occurred.