summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/smartpointers/arcvec_erase.c
diff options
context:
space:
mode:
authortylov <[email protected]>2023-08-10 22:32:02 +0200
committertylov <[email protected]>2023-08-10 22:32:02 +0200
commit2ea55509f1d3c7b438340ad37cf725e8438c7673 (patch)
tree539975c90da5fe20395adb4fe7627b787040daa5 /misc/examples/smartpointers/arcvec_erase.c
parent97898812b4c0185db74fc5c94c7556ecef3fb1e3 (diff)
parentbe5651c9fc3d3ecd2d9d24e6e4763260ef86de41 (diff)
downloadSTC-modified-2ea55509f1d3c7b438340ad37cf725e8438c7673.tar.gz
STC-modified-2ea55509f1d3c7b438340ad37cf725e8438c7673.zip
Merge branch 'master' of https://github.com/stclib/STC
Diffstat (limited to 'misc/examples/smartpointers/arcvec_erase.c')
-rw-r--r--misc/examples/smartpointers/arcvec_erase.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/examples/smartpointers/arcvec_erase.c b/misc/examples/smartpointers/arcvec_erase.c
index 9d757533..0526b6a0 100644
--- a/misc/examples/smartpointers/arcvec_erase.c
+++ b/misc/examples/smartpointers/arcvec_erase.c
@@ -5,11 +5,12 @@ void show_drop(int* x) { printf("drop: %d\n", *x); }
#define i_type Arc
#define i_key int
#define i_keydrop show_drop
-#define i_cmp_native // enable sort/search for int type
+#define i_use_cmp // enable sort/search for int type
#include <stc/carc.h> // Shared pointer to int
#define i_type Vec
#define i_keyboxed Arc
+#define i_use_cmp
#include <stc/cvec.h> // Vec: cvec<Arc>