Skip to content

Commit

Permalink
register Go int as long in type resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
lovromazgon committed Jul 30, 2024
1 parent dfd5956 commit 90e99fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ func NewTypeResolver() *TypeResolver {
r.Register(string(Int), int16(0))
r.Register(string(Int), int32(0))
r.Register(string(Int), int(0))
r.Register(string(Long), int(0))
r.Register(string(Long), int64(0))
r.Register(string(Float), float32(0))
r.Register(string(Double), float64(0))
Expand Down

0 comments on commit 90e99fa

Please sign in to comment.