Fix typeid size for 32-bit platforms

This commit is contained in:
gingerBill
2025-02-20 17:09:28 +00:00
parent 4ece0617bc
commit 614c0dd740
2 changed files with 5 additions and 3 deletions
+2
View File
@@ -442,10 +442,12 @@ Raw_Any :: struct {
data: rawptr,
id: typeid,
}
#assert(size_of(Raw_Any) == size_of(any))
Raw_Cstring :: struct {
data: [^]byte,
}
#assert(size_of(Raw_Cstring) == size_of(cstring))
Raw_Soa_Pointer :: struct {
data: rawptr,