Merge branch 'main' into feature/new-object-system
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user