diff options
| author | Tyge Løvset <[email protected]> | 2021-08-31 16:51:12 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-08-31 16:51:12 +0200 |
| commit | 824708874053e550ab866d97c5a723691ed2b56e (patch) | |
| tree | f6626a1f1463843df7a4bde1132fdd7aab2c9a96 /include/stc/cset.h | |
| parent | 6371e122b2447f08c8d8859b3530d79be1831f10 (diff) | |
| download | STC-modified-824708874053e550ab866d97c5a723691ed2b56e.tar.gz STC-modified-824708874053e550ab866d97c5a723691ed2b56e.zip | |
Maintenance cleanup.
Diffstat (limited to 'include/stc/cset.h')
| -rw-r--r-- | include/stc/cset.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/stc/cset.h b/include/stc/cset.h index 071a7cbc..6979311a 100644 --- a/include/stc/cset.h +++ b/include/stc/cset.h @@ -57,11 +57,11 @@ int main(void) { using_cset_9(X, Key, keyEquals, keyHash, keyDel, keyClone, c_default_toraw, Key, c_true)
#define using_cset_9(X, Key, keyEqualsRaw, keyHashRaw, keyDel, keyFromRaw, keyToRaw, RawKey, defTypes) \
_c_using_chash(cset_##X, cset_, Key, Key, keyEqualsRaw, keyHashRaw, \
- @@, @@, @@, void, defTypes, keyDel, keyFromRaw, keyToRaw, RawKey)
+ @@, @@, @@, void, keyDel, keyFromRaw, keyToRaw, RawKey, defTypes)
-/* cset_str: */
#define using_cset_str() \
- _c_using_chash_strkey(str, cset_, cstr, @@, @@, @@, void, c_true)
+ using_cset_9(str, cstr, c_rawstr_equals, c_rawstr_hash, cstr_del, \
+ cstr_from, cstr_str, const char*, c_true)
#define SET_ONLY_cset_(...) __VA_ARGS__
#define MAP_ONLY_cset_(...)
|
