aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Core/Private
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-10-06 14:19:01 -0700
committerGravatar GitHub <noreply@github.com>2017-10-06 14:19:01 -0700
commitb8d39fcabec10dde968d7e73aa946376f0f792a4 (patch)
tree6d7d8b6e3652c513a79d733aa5ae0e55c5fe58cb /Firebase/Core/Private
parent19d1bb304a758b2d42d7ba611fb73be4c42ff03f (diff)
Fix a warning that shows up in Xcode 9 (#342)
Diffstat (limited to 'Firebase/Core/Private')
-rw-r--r--Firebase/Core/Private/FIRAppInternal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firebase/Core/Private/FIRAppInternal.h b/Firebase/Core/Private/FIRAppInternal.h
index aa73d8d..73f44ea 100644
--- a/Firebase/Core/Private/FIRAppInternal.h
+++ b/Firebase/Core/Private/FIRAppInternal.h
@@ -99,7 +99,7 @@ typedef void (^FIRAppGetTokenImplementation)(BOOL forceRefresh, FIRTokenCallback
/** @typedef FIRAppGetUID
@brief The type of block which can provide an implementation for the @c getUID method.
*/
-typedef NSString *_Nullable (^FIRAppGetUIDImplementation)();
+typedef NSString *_Nullable (^FIRAppGetUIDImplementation)(void);
@interface FIRApp ()