Skip to content

Commit 6c7c46b

Browse files
authored
Merge branch 'master' into a2/carthage-support
2 parents 133d112 + 78de4d6 commit 6c7c46b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/MessagePack/ConvenienceProperties.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ extension MessagePackValue {
4848
switch self {
4949
case .int(let value):
5050
return value
51-
case .uint(let value) where value < UInt64(Int64.max):
51+
case .uint(let value) where value <= UInt64(Int64.max):
5252
return Int64(value)
5353
default:
5454
return nil

0 commit comments

Comments
 (0)