Skip to content

Commit 392f988

Browse files
authored
- [fixed] Fixed build warnings introduced with Xcode 12.5 (#7433)
1 parent 93574c5 commit 392f988

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

FirebaseMessaging/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 2021-02 -- v7.6.0
2+
- [fixed] Fixed build warnings introduced with Xcode 12.5. (#7433)
3+
14
# 2020-11 -- v7.1.0
25
- [fixed] Fixed completion handler issue in `application(_:didReceiveRemoteNotification:fetchCompletionHandler:)` method. (#6863)
36

FirebaseMessaging/Sources/FIRMessagingTopicOperation.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
static NSString *const kFIRMessagingSubscribeServerHost =
2727
@"https://iid.googleapis.com/iid/register";
2828

29-
NSString *FIRMessagingSubscriptionsServer() {
29+
NSString *FIRMessagingSubscriptionsServer(void) {
3030
static NSString *serverHost = nil;
3131
static dispatch_once_t onceToken;
3232
dispatch_once(&onceToken, ^{

0 commit comments

Comments
 (0)