From 25d756bcd7e519bc16eb30aa368b96812c2c30b9 Mon Sep 17 00:00:00 2001 From: totoro Date: Sun, 12 Mar 2017 19:41:44 +0100 Subject: [PATCH] move back to Float instead of Float32 and Float64 which are still not implemented in current version of Anubis --- types/ds_types.anubis | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/types/ds_types.anubis b/types/ds_types.anubis index 8d97cd2..c4e1324 100644 --- a/types/ds_types.anubis +++ b/types/ds_types.anubis @@ -19,8 +19,9 @@ public type DS_Anubis_Type: word16, word32, string, - float32, - float64, + float, +// float32, reserved for future implementation in Anubis (still under construction in Anubis) +// float64, reserved for future implementation in Anubis (still under construction in Anubis) ds_type (String type_name), extern_type (String type_name, String read). //external type. No need to check @@ -170,8 +171,9 @@ public define String word16 then "Word16", word32 then "Word32", string then "String", - float32 then "Float32", - float64 then "Float64", + float then "Float", +// float32 then "Float32", reserved for future implementation in Anubis (still under construction in Anubis) +// float64 then "Float64", reserved for future implementation in Anubis (still under construction in Anubis) ds_type(type_name) then type_name, extern_type(type_name, read) then type_name, } -- libgit2 0.21.4