Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandin committed Jul 3, 2024
1 parent 35f7cfc commit e8ab946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftCBOR/CBOREncodable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extension CBOR: CBOREncodable {
case let .boolean(b): return b.encode()
case .null: return CBOR.encodeNull()
case .undefined: return CBOR.encodeUndefined()
case .half(_): return f.encode()
case let .half(h): return h.encode()
case let .float(f): return f.encode()
case let .double(d): return d.encode()
case .break: return CBOR.encodeBreak()
Expand Down

0 comments on commit e8ab946

Please sign in to comment.