improvement

This commit is contained in:
Krzosa Karol
2025-01-21 18:02:30 +01:00
parent adb30cf24d
commit 02638f80f0
6 changed files with 37 additions and 43 deletions

View File

@@ -33,7 +33,6 @@ struct sb8_t {
// WARNING: remember to update typeinfo after editing this
i32 indent;
void *user_data;
};
typedef i32 s8_seek_t;

View File

@@ -149,7 +149,6 @@ gb_read_only type_t type__sb8_t = { type_kind_struct, s8_const_lit("sb8_t"), siz
{s8_const_lit("first"), &POINTER(sb8_node_t), .offset = offsetof(sb8_t, first)},
{s8_const_lit("last"), &POINTER(sb8_node_t), .offset = offsetof(sb8_t, last)},
{s8_const_lit("indent"), &type__i32, .offset = offsetof(sb8_t, indent)},
{s8_const_lit("user_data"), &POINTER(void), .offset = offsetof(sb8_t, user_data)},
}
};