diff options
| author | Tyge Løvset <[email protected]> | 2021-05-07 10:13:57 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-05-07 10:13:57 +0200 |
| commit | 6457057331d7a98b25cfa48371280da859f005f1 (patch) | |
| tree | e80a5f0dad49f9f3b8698b52d536df5a73e28e59 /benchmarks | |
| parent | 66da5f82347d0022cfbaea405c9db50eac4a84d8 (diff) | |
| download | STC-modified-6457057331d7a98b25cfa48371280da859f005f1.tar.gz STC-modified-6457057331d7a98b25cfa48371280da859f005f1.zip | |
Rename to use c_rawstr_*() instead of c_rstr_*().
Diffstat (limited to 'benchmarks')
| -rw-r--r-- | benchmarks/others/clist_v1.h | 2 | ||||
| -rw-r--r-- | benchmarks/others/csmap_v1.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/others/clist_v1.h b/benchmarks/others/clist_v1.h index ff777325..80484dba 100644 --- a/benchmarks/others/clist_v1.h +++ b/benchmarks/others/clist_v1.h @@ -69,7 +69,7 @@ _c_using_clist(clist_##X, Value, valueCompare, valueDel, valueFromRaw, valueToRaw, RawValue)
#define using_clist_str() \
- _c_using_clist(clist_str, cstr, c_rstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
+ _c_using_clist(clist_str, cstr, c_rawstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
#define _c_using_clist_types(CX, Value) \
diff --git a/benchmarks/others/csmap_v1.h b/benchmarks/others/csmap_v1.h index be5f929a..fa86c91c 100644 --- a/benchmarks/others/csmap_v1.h +++ b/benchmarks/others/csmap_v1.h @@ -77,7 +77,7 @@ int main(void) { #define using_csset_str() \
_c_using_aatree_strkey(str, csset_, cstr, @@, @@)
#define using_csmap_str() \
- _c_using_aatree(csmap_str, csmap_, cstr, cstr, c_rstr_compare, cstr_del, cstr_del, \
+ _c_using_aatree(csmap_str, csmap_, cstr, cstr, c_rawstr_compare, cstr_del, cstr_del, \
cstr_from, cstr_toraw, const char*, cstr_from, cstr_toraw, const char*)
@@ -88,7 +88,7 @@ int main(void) { #define using_csmap_strkey_4(X, Mapped, mappedDel, mappedClone) \
_c_using_aatree_strkey(X, csmap_, Mapped, mappedDel, mappedClone)
#define _c_using_aatree_strkey(X, C, Mapped, mappedDel, mappedClone) \
- _c_using_aatree(C##X, C, cstr, Mapped, c_rstr_compare, mappedDel, cstr_del, \
+ _c_using_aatree(C##X, C, cstr, Mapped, c_rawstr_compare, mappedDel, cstr_del, \
cstr_from, cstr_toraw, const char*, mappedClone, c_trivial_toraw, Mapped)
|
