diff options
author | Paul Beusterien <paulbeusterien@google.com> | 2017-10-06 14:19:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-06 14:19:01 -0700 |
commit | b8d39fcabec10dde968d7e73aa946376f0f792a4 (patch) | |
tree | 6d7d8b6e3652c513a79d733aa5ae0e55c5fe58cb /Firebase/Core | |
parent | 19d1bb304a758b2d42d7ba611fb73be4c42ff03f (diff) |
Fix a warning that shows up in Xcode 9 (#342)
Diffstat (limited to 'Firebase/Core')
-rw-r--r-- | Firebase/Core/Private/FIRAppInternal.h | 2 |
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 () |