Skip to content

Commit

Permalink
Made CLLocationCoordinate2D properties public on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
1ec5 committed Nov 5, 2020
1 parent cf0e3a1 commit b46d6d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Polyline/CoreLocation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public typealias LocationCoordinate2D = CLLocationCoordinate2D
A geographic coordinate.
*/
public struct LocationCoordinate2D {
let latitude: Double
let longitude: Double
public let latitude: Double
public let longitude: Double

public init(latitude: Double, longitude: Double) {
self.latitude = latitude
Expand Down

0 comments on commit b46d6d6

Please sign in to comment.