Skip to content

Commit

Permalink
compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbarela committed Oct 23, 2023
1 parent 0a9a514 commit 9c8a025
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ All notable changes to this project will be documented in this file.
* Navigational Warning drawing bugs fixed
* Navigational Warning tap areas consistently work now
* Fix for iOS 17 batch import
## 1.2.1
### Bug Fixes
* Set the correct URL for MSI
## 1.2.0
### Bug Fixes
* UI Improvements to prevent unncessary redraws, ongoing fixes
Expand Down
9 changes: 9 additions & 0 deletions Marlin/Marlin/Extensions/SFGeometryExtensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@

import Foundation
import CoreLocation
import sf_ios

// Need this here so that XCode will compile the SFGeometryCollection class before it is used in a subsequent file
// why XCode will not just compile the class in the file it is referenced in is beyond me..... DRB 2023 OCT 4
extension SFGeometryCollection {
var thingToMakeItCompile: String {
"hi"
}
}

extension SFPolygon {

Expand Down
2 changes: 1 addition & 1 deletion Marlin/Marlin/Marlin-Bridging-Header.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#import "SFLineString.h"
#import "SFGeometry.h"
#import "SFPoint.h"

#import "SFGeometryCollection.h"

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

Expand Down

0 comments on commit 9c8a025

Please sign in to comment.