diff options
| author | Tyge Løvset <[email protected]> | 2023-02-16 19:13:52 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2023-02-16 19:13:52 +0100 |
| commit | 8864c11b2b85f832ce746a902b43ecf170e2eebc (patch) | |
| tree | 8f5f51456182b96e0feb6b5869576033ed962ad6 /include/stc/csmap.h | |
| parent | 290055ad96c22fd9dfb539d0217e45cd2f1cdb91 (diff) | |
| download | STC-modified-8864c11b2b85f832ce746a902b43ecf170e2eebc.tar.gz STC-modified-8864c11b2b85f832ce746a902b43ecf170e2eebc.zip | |
Reverted and removed maps put function. Renamed clist node api functions. Minor fix in template.h
Diffstat (limited to 'include/stc/csmap.h')
| -rw-r--r-- | include/stc/csmap.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/stc/csmap.h b/include/stc/csmap.h index 48e1eb62..bca0343c 100644 --- a/include/stc/csmap.h +++ b/include/stc/csmap.h @@ -186,11 +186,6 @@ _cx_memb(_shrink_to_fit)(_cx_self *self) { STC_API _cx_result _cx_memb(_insert_or_assign)(_cx_self* self, i_key key, i_val mapped); #if !defined i_no_emplace STC_API _cx_result _cx_memb(_emplace_or_assign)(_cx_self* self, _cx_rawkey rkey, i_valraw rmapped); - STC_INLINE _cx_result _cx_memb(_put)(_cx_self* self, _cx_rawkey rkey, i_valraw rmapped) - { return _cx_memb(_emplace_or_assign)(self, rkey, rmapped); } - #else - STC_INLINE _cx_result _cx_memb(_put)(_cx_self* self, i_key key, i_val mapped) - { return _cx_memb(_insert_or_assign)(self, key, mapped); } #endif STC_INLINE const _cx_mapped* |
