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

@@ -8,7 +8,7 @@
#include <string.h>
static void array_release(struct b_dsref *obj);
static void array_to_string(struct b_dsref *obj, struct b_stream *out);
static void array_to_string(const struct b_dsref *obj, struct b_stream *out);
static struct b_dsref_type array_type = {
.t_flags = B_DSREF_FUNDAMENTAL,
@@ -221,7 +221,7 @@ size_t b_array_capacity(const struct b_array *array)
return array->ar_cap;
}
static void array_to_string(struct b_dsref *obj, struct b_stream *out)
static void array_to_string(const struct b_dsref *obj, struct b_stream *out)
{
struct b_array *array = B_ARRAY(obj);