Merge branch 'main' into feature/new-object-system

This commit is contained in:
2025-10-15 11:13:00 +01:00
227 changed files with 8252 additions and 2129 deletions

View File

@@ -41,7 +41,7 @@ void b_release(struct b_dsref *obj)
free(obj);
}
void b_to_string(struct b_dsref *obj, struct b_stream *out)
void b_to_string(const struct b_dsref *obj, struct b_stream *out)
{
if (obj->ob_type->t_to_string) {
obj->ob_type->t_to_string(obj, out);