Skip to content

Commit

Permalink
Merge pull request #26 from IBM-Swift/issue_832
Browse files Browse the repository at this point in the history
Migrate to Swift 3.0.1
  • Loading branch information
ianpartridge authored Nov 3, 2016
2 parents e332d9c + 48523f0 commit ba99cbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0
3.0.1
4 changes: 2 additions & 2 deletions Source/SwiftyJSON.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1133,9 +1133,9 @@ extension JSON {
}
set {
#if os(Linux)
self.object = newValue?.absoluteString._bridgeToObjectiveC()
self.object = newValue?.absoluteString._bridgeToObjectiveC() as Any
#else
self.object = newValue?.absoluteString
self.object = newValue?.absoluteString as Any
#endif
}
}
Expand Down

0 comments on commit ba99cbf

Please sign in to comment.