diff options
author | Xiangtian Dai <xiangtian@google.com> | 2017-10-21 07:38:32 -0700 |
---|---|---|
committer | Paul Beusterien <paulbeusterien@google.com> | 2017-10-21 07:38:32 -0700 |
commit | e5d40c560268f5b8fd5dab76ffc0bae4b602135f (patch) | |
tree | fe960833ac0c07b0e5ee2944de04acc224fc2dfe /Firebase/Auth | |
parent | 104364f88d0c6d28b5ceef43faff0aff1629d3bf (diff) |
Fixes a pod lint warning for implicit conversion. (#399)
Diffstat (limited to 'Firebase/Auth')
-rw-r--r-- | Firebase/Auth/Source/FIRAuthAppDelegateProxy.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m b/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m index 8b8e1bb..f13e94f 100644 --- a/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m +++ b/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m @@ -51,7 +51,8 @@ static BOOL isIOS9orLater() { } return NO; #else - return &UIApplicationOpenURLOptionsAnnotationKey; // the constant is only available on iOS 9+ + // UIApplicationOpenURLOptionsAnnotationKey is only available on iOS 9+. + return &UIApplicationOpenURLOptionsAnnotationKey != NULL; #endif } |