Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 9c8a025

Browse files
committed
compilation fix
1 parent 0a9a514 commit 9c8a025

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ All notable changes to this project will be documented in this file.
1212
* Navigational Warning drawing bugs fixed
1313
* Navigational Warning tap areas consistently work now
1414
* Fix for iOS 17 batch import
15+
## 1.2.1
16+
### Bug Fixes
17+
* Set the correct URL for MSI
1518
## 1.2.0
1619
### Bug Fixes
1720
* UI Improvements to prevent unncessary redraws, ongoing fixes

Marlin/Marlin/Extensions/SFGeometryExtensions.swift

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@
77

88
import Foundation
99
import CoreLocation
10+
import sf_ios
11+
12+
// Need this here so that XCode will compile the SFGeometryCollection class before it is used in a subsequent file
13+
// why XCode will not just compile the class in the file it is referenced in is beyond me..... DRB 2023 OCT 4
14+
extension SFGeometryCollection {
15+
var thingToMakeItCompile: String {
16+
"hi"
17+
}
18+
}
1019

1120
extension SFPolygon {
1221

Marlin/Marlin/Marlin-Bridging-Header.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#import "SFLineString.h"
1515
#import "SFGeometry.h"
1616
#import "SFPoint.h"
17-
17+
#import "SFGeometryCollection.h"
1818

1919
//#import "sf-ios-umbrella.h"
2020

0 commit comments

Comments
 (0)