Always convert float to double

pull/602/head
Bastiaan Olij 2021-09-04 21:38:25 +10:00
parent 50774cf0fb
commit 3a5bd21092
1 changed files with 2 additions and 0 deletions

View File

@ -1561,6 +1561,8 @@ def correct_type(type_name, meta=None):
if meta != None:
if "int" in meta:
return f"{meta}_t"
elif meta in type_conversion:
return type_conversion[type_name]
else:
return meta
if type_name in type_conversion: