Skip to content

Commit 26ffcf9

Browse files
committed
firebase: fully qualify a type name
This corrects a failure to resolve the typename `FutureBase` when building for Android.
1 parent 29e40c8 commit 26ffcf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/firebase/include/FirebaseCore.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class SWIFT_CONFORMS_TO_PROTOCOL(FirebaseCore.FutureProtocol)
3131
_Nonnull FutureCompletionType completion,
3232
_Nullable void* user_data) const {
3333
::firebase::FutureBase::OnCompletion(
34-
[completion, user_data](const FutureBase&) {
34+
[completion, user_data](const ::firebase::FutureBase&) {
3535
completion(user_data);
3636
});
3737
}

0 commit comments

Comments
 (0)