summaryrefslogtreecommitdiffhomepage
path: root/stc/cqueue.h
diff options
context:
space:
mode:
authortylo <[email protected]>2020-09-08 13:23:09 +0200
committertylo <[email protected]>2020-09-08 13:23:09 +0200
commit1f3545e681a0fa68608760d5ec7b555e41d35c77 (patch)
tree323798c5c2431150a474f7a39cb9c7a741bfc47e /stc/cqueue.h
parent708f45220329f4e23b1671cb1b18c37f98232bff (diff)
downloadSTC-modified-1f3545e681a0fa68608760d5ec7b555e41d35c77.tar.gz
STC-modified-1f3545e681a0fa68608760d5ec7b555e41d35c77.zip
changed c_foreach() macro -> Removed cnt_range() methods, and simplified iters.
Diffstat (limited to 'stc/cqueue.h')
-rw-r--r--stc/cqueue.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/stc/cqueue.h b/stc/cqueue.h
index a9efa1b6..33e2da88 100644
--- a/stc/cqueue.h
+++ b/stc/cqueue.h
@@ -95,8 +95,6 @@ STC_INLINE cqueue_##X##_iter_t \
cqueue_##X##_begin(cqueue_##X* self) {return ctype##_begin(self);} \
STC_INLINE cqueue_##X##_iter_t \
cqueue_##X##_end(cqueue_##X* self) {return ctype##_end(self);} \
-STC_INLINE cqueue_##X##_iter_t \
-cqueue_##X##_range(cqueue_##X##_iter_t s, cqueue_##X##_iter_t f) {return ctype##_range(s, f);} \
STC_INLINE void \
cqueue_##X##_next(cqueue_##X##_iter_t* it) {ctype##_next(it);} \
STC_INLINE cqueue_##X##_value_t* \