From c4a55788f65fc1db4b7d58465a429d71ecb298ce Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Fri, 6 Oct 2017 10:30:26 -0700 Subject: [PATCH] Fix a warning that shows up in Xcode 9 --- Firebase/Core/Private/FIRAppInternal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firebase/Core/Private/FIRAppInternal.h b/Firebase/Core/Private/FIRAppInternal.h index aa73d8dfa69..73f44ea5c32 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 ()