summaryrefslogtreecommitdiffhomepage
path: root/include/stc/clist.h
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-01-03 23:04:52 +0100
committerTyge Løvset <[email protected]>2022-01-03 23:04:52 +0100
commitd37056f1ef380a5649e192436e84a15d1520c5e0 (patch)
tree7814b6b0c76163ca4e37303cfbe2a4941039fefa /include/stc/clist.h
parentc935d2af7cf730fec80695d20529d0b15bda2898 (diff)
downloadSTC-modified-d37056f1ef380a5649e192436e84a15d1520c5e0.tar.gz
STC-modified-d37056f1ef380a5649e192436e84a15d1520c5e0.zip
"gcc/clang -O2 -Wall -std=c99 -pedantic" compiles examples with no warnings. More cleanups.
Diffstat (limited to 'include/stc/clist.h')
-rw-r--r--include/stc/clist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stc/clist.h b/include/stc/clist.h
index d53c35c8..442e5a30 100644
--- a/include/stc/clist.h
+++ b/include/stc/clist.h
@@ -100,10 +100,10 @@ STC_API _cx_iter _cx_memb(_erase_range)(_cx_self* self, _cx_iter it1, _cx
STC_API size_t _cx_memb(_remove)(_cx_self* self, i_valraw val);
STC_API _cx_iter _cx_memb(_find_in)(_cx_iter it1, _cx_iter it2, i_valraw val);
STC_API int _cx_memb(_value_cmp)(const _cx_value* x, const _cx_value* y);
+STC_API void _cx_memb(_sort)(_cx_self* self);
#endif
STC_API _cx_iter _cx_memb(_splice)(_cx_self* self, _cx_iter it, _cx_self* other);
STC_API _cx_self _cx_memb(_split_off)(_cx_self* self, _cx_iter it1, _cx_iter it2);
-STC_API void _cx_memb(_sort)(_cx_self* self);
STC_API _cx_node* _cx_memb(_erase_after_)(_cx_self* self, _cx_node* node);
#if !c_option(c_no_clone)