Skip to content

Commit

Permalink
fix go client mapping for double and float.
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Aug 11, 2021
1 parent e44bf2e commit b9e7879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/client/_macros.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
[#if type == "boolean" || type = "Boolean"]
[#return "bool"/]
[#elseif type == "double" || type == "Double"]
[#return "double"/]
[#return "float64"/]
[#elseif type == "float" || type == "Float"]
[#return "float"/]
[#return "float32"/]
[#elseif type == "int" || type == "Integer"]
[#return "int"/]
[#elseif type == "Long" || type == "long" || type == "ZonedDateTime"]
Expand Down

0 comments on commit b9e7879

Please sign in to comment.