Commit 25d756bcd7e519bc16eb30aa368b96812c2c30b9
1 parent
7be0acc1
move back to Float instead of Float32 and Float64 which are still not implemente…
…d in current version of Anubis
Showing
1 changed file
with
6 additions
and
4 deletions
Show diff stats
types/ds_types.anubis
| ... | ... | @@ -19,8 +19,9 @@ public type DS_Anubis_Type: |
| 19 | 19 | word16, |
| 20 | 20 | word32, |
| 21 | 21 | string, |
| 22 | - float32, | |
| 23 | - float64, | |
| 22 | + float, | |
| 23 | +// float32, reserved for future implementation in Anubis (still under construction in Anubis) | |
| 24 | +// float64, reserved for future implementation in Anubis (still under construction in Anubis) | |
| 24 | 25 | ds_type (String type_name), |
| 25 | 26 | extern_type (String type_name, String read). //external type. No need to check |
| 26 | 27 | |
| ... | ... | @@ -170,8 +171,9 @@ public define String |
| 170 | 171 | word16 then "Word16", |
| 171 | 172 | word32 then "Word32", |
| 172 | 173 | string then "String", |
| 173 | - float32 then "Float32", | |
| 174 | - float64 then "Float64", | |
| 174 | + float then "Float", | |
| 175 | +// float32 then "Float32", reserved for future implementation in Anubis (still under construction in Anubis) | |
| 176 | +// float64 then "Float64", reserved for future implementation in Anubis (still under construction in Anubis) | |
| 175 | 177 | ds_type(type_name) then type_name, |
| 176 | 178 | extern_type(type_name, read) then type_name, |
| 177 | 179 | } | ... | ... |