From 15c5ad14e7f4755ecae95e3aae484bdbbea34623 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Sun, 21 Mar 2021 21:06:00 +0100 Subject: Splitted using_carray() into using_carray2() and using_carray3() --- examples/complex.c | 2 +- examples/demos.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/complex.c b/examples/complex.c index 49cd0077..4ca833d4 100644 --- a/examples/complex.c +++ b/examples/complex.c @@ -5,7 +5,7 @@ void check_del(float* v) {printf("destroy %g\n", *v);} -using_carray(f, float, check_del, c_trivial_fromraw); +using_carray2(f, float, check_del, c_trivial_fromraw); using_clist(a, carray2f, c_no_compare, carray2f_del, c_no_clone); using_cmap(l, int, clist_a, c_default_equals, c_default_hash, clist_a_del, c_no_clone); using_cmap_strkey(s, cmap_l, cmap_l_del, c_no_clone); diff --git a/examples/demos.c b/examples/demos.c index 553d6d88..eca5609f 100644 --- a/examples/demos.c +++ b/examples/demos.c @@ -175,7 +175,7 @@ void mapdemo3() } -using_carray(f, float); +using_carray3(f, float); void arraydemo1() { -- cgit v1.2.3