From 87bc0cfdbddeb550b7d7959c88088ef9658a5e2d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 23 Feb 2024 13:29:20 -0500 Subject: Fix up some ++ stuff for arrays --- builtins/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtins/array.h') diff --git a/builtins/array.h b/builtins/array.h index 5a4b29ab..0cbc12f8 100644 --- a/builtins/array.h +++ b/builtins/array.h @@ -32,7 +32,7 @@ void Array__clear(array_t *array, const TypeInfo *type); void Array__compact(array_t *arr, const TypeInfo *type); bool Array__contains(array_t array, void *item, const TypeInfo *type); array_t Array__slice(array_t *array, int64_t first, int64_t stride, int64_t length, bool readonly, const TypeInfo *type); -array_t Array__concat(array_t *x, array_t *y, const TypeInfo *type); +array_t Array__concat(array_t x, array_t y, const TypeInfo *type); uint32_t Array__hash(const array_t *arr, const TypeInfo *type); int32_t Array__compare(const array_t *x, const array_t *y, const TypeInfo *type); bool Array__equal(const array_t *x, const array_t *y, const TypeInfo *type); -- cgit v1.2.3