summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/arcvec_erase.c
diff options
context:
space:
mode:
authortylov <[email protected]>2023-07-12 19:39:59 +0200
committertylov <[email protected]>2023-07-12 21:01:46 +0200
commitebe5abc29d51c643520301e42124365477f44957 (patch)
treef1188f5c649f4244c384484ae584894280396272 /misc/examples/arcvec_erase.c
parent715a02ba8155de2f7d446e8d7d2ae305c27996b9 (diff)
downloadSTC-modified-ebe5abc29d51c643520301e42124365477f44957.tar.gz
STC-modified-ebe5abc29d51c643520301e42124365477f44957.zip
Changed docs and examples to use i_key* template parameters instead of i_val* for all non-maps.
Renamed c_ASSERT() to c_assert() and added optional message parameter to c_static_assert().
Diffstat (limited to 'misc/examples/arcvec_erase.c')
-rw-r--r--misc/examples/arcvec_erase.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/examples/arcvec_erase.c b/misc/examples/arcvec_erase.c
index 0b9252d9..f409258b 100644
--- a/misc/examples/arcvec_erase.c
+++ b/misc/examples/arcvec_erase.c
@@ -3,13 +3,13 @@
void show_drop(int* x) { printf("drop: %d\n", *x); }
#define i_type Arc
-#define i_val int
-#define i_valdrop show_drop
+#define i_key int
+#define i_keydrop show_drop
#define i_native_cmp // enable sort/search for int type
#include <stc/carc.h> // Shared pointer to int
#define i_type Vec
-#define i_valboxed Arc
+#define i_keyboxed Arc
#include <stc/cvec.h> // Vec: cvec<Arc>