Skip to content

Commit 52ccf01

Browse files
authored
pb-dl-12.5 (#7434)
1 parent f5b5c6f commit 52ccf01

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

FirebaseDynamicLinks/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v7.6.0
2+
- [fixed] Fixed build warnings introduced with Xcode 12.5. (#7434)
3+
14
# v7.3.1
25
- [fixed] New callback added in 7.3.0 should be on the main thread. (#7159)
36

FirebaseDynamicLinks/Sources/FIRDLJavaScriptExecutor.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
static NSString *const kJSMethodName = @"generateFingerprint";
2727

2828
/** Creates and returns the FDL JS method name. */
29-
NSString *FIRDLTypeofFingerprintJSMethodNameString() {
29+
NSString *FIRDLTypeofFingerprintJSMethodNameString(void) {
3030
static NSString *methodName;
3131
static dispatch_once_t onceToken;
3232
dispatch_once(&onceToken, ^{
@@ -36,7 +36,7 @@
3636
}
3737

3838
/** Creates and returns the FDL JS method definition. */
39-
NSString *GINFingerprintJSMethodString() {
39+
NSString *GINFingerprintJSMethodString(void) {
4040
static NSString *methodString;
4141
static dispatch_once_t onceToken;
4242
dispatch_once(&onceToken, ^{

0 commit comments

Comments
 (0)