From 1954c6aa34aae6301f90e81e546db6fb666c517a Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Mon, 8 Aug 2022 13:11:52 +0200 Subject: Fixed const mistake. --- include/stc/cmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stc/cmap.h b/include/stc/cmap.h index 1cb8bb3f..84957e69 100644 --- a/include/stc/cmap.h +++ b/include/stc/cmap.h @@ -205,7 +205,7 @@ _cx_memb(_get)(const _cx_self* self, _cx_rawkey rkey) { } STC_INLINE _cx_value* -_cx_memb(_get_mut)(const _cx_self* self, _cx_rawkey rkey) +_cx_memb(_get_mut)(_cx_self* self, _cx_rawkey rkey) { return (_cx_value*)_cx_memb(_get)(self, rkey); } STC_INLINE _cx_iter -- cgit v1.2.3