Implemented struct size calculation after a scan

This commit is contained in:
2025-02-07 16:26:24 +01:00
parent c28eace966
commit 63a2752c56
7 changed files with 48 additions and 24 deletions

View File

@ -1,7 +1,7 @@
package types
var (
Float64 = &Struct{name: "Float64", size: 8}
Float32 = &Struct{name: "Float32", size: 4}
Float64 = &Base{name: "Float64", size: 8}
Float32 = &Base{name: "Float32", size: 4}
Float = Float64
)