summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2021-04-08 12:14:17 +0200
committerAndrej Mihajlov <and@mullvad.net>2021-04-28 10:25:01 +0200
commit703757b268df614ed23e63dd17e11f721447246a (patch)
treefa2f97d5a47a81a0016b1aa6f2485f298fe61fd8
parent9677345d004cb78f6b174f24c161623bd518cdee (diff)
downloadmullvadvpn-703757b268df614ed23e63dd17e11f721447246a.tar.xz
mullvadvpn-703757b268df614ed23e63dd17e11f721447246a.zip
AnyAppStorePaymentObserver: add missing formal conformance to AppStorePaymentObserver
-rw-r--r--ios/MullvadVPN/AppStorePaymentManager.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/AppStorePaymentManager.swift b/ios/MullvadVPN/AppStorePaymentManager.swift
index ed8a1ad1f9..08d52a9ec1 100644
--- a/ios/MullvadVPN/AppStorePaymentManager.swift
+++ b/ios/MullvadVPN/AppStorePaymentManager.swift
@@ -49,7 +49,7 @@ protocol AppStorePaymentObserver: class {
}
/// A type-erasing weak container for `AppStorePaymentObserver`
-private class AnyAppStorePaymentObserver: WeakObserverBox, Equatable {
+private class AnyAppStorePaymentObserver: AppStorePaymentObserver, WeakObserverBox, Equatable {
private(set) weak var inner: AppStorePaymentObserver?
init<T: AppStorePaymentObserver>(_ inner: T) {