summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2021-09-04 21:38:25 +1000
committerBastiaan Olij <mux213@gmail.com>2021-09-27 23:08:10 +1000
commit3a5bd210921ac668949e20c494976660a986ea4a (patch)
tree2f04e9526ab9aca3b89fd3af23a475a79583fe32
parent50774cf0fbc26444458b19e6d6b04342d5ab7f63 (diff)
downloadredot-cpp-3a5bd210921ac668949e20c494976660a986ea4a.tar.gz
Always convert float to double
-rw-r--r--binding_generator.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/binding_generator.py b/binding_generator.py
index 5094d6d..24135aa 100644
--- a/binding_generator.py
+++ b/binding_generator.py
@@ -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: