Skip to content

Commit a3ed3cc

Browse files
committed
fix: remove @retroactive attribute for Swift 5 compatibility
The @retroactive attribute is only available in Swift 6, but the CI uses an older version of Swift. Removing this attribute to fix the build failure.
1 parent 3578e02 commit a3ed3cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

V2er/View/ViewExtension.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ struct RoundedEdgeModifier: ViewModifier {
101101
}
102102

103103

104-
extension UINavigationController: @retroactive UIGestureRecognizerDelegate {
104+
extension UINavigationController: UIGestureRecognizerDelegate {
105105
override open func viewDidLoad() {
106106
super.viewDidLoad()
107107
interactivePopGestureRecognizer?.delegate = self

0 commit comments

Comments
 (0)