utahiosmac / Marshal

Marshaling the typeless wild west of [String: Any]
MIT License
697 stars 62 forks source link

Fix CI Failure on 32bit platforms #87

Closed KingOfBrian closed 7 years ago

KingOfBrian commented 7 years ago

CI was failing on my other branch due to:

integer literal '9000000000000000000' overflows when stored into 'Int'

This PR just uses Int.max and Int.max / 2 to avoid this.

KingOfBrian commented 7 years ago

The remaining build failures are:

jarsen commented 7 years ago

Great! Thank you!