diff options
| author | Tyge Løvset <[email protected]> | 2021-03-06 12:39:40 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-03-06 12:39:40 +0100 |
| commit | 15dcc16cac8f5353d657fe6511eb1a01be347fa0 (patch) | |
| tree | 4d50e2948c6f9bf18c95335feda7ae44147ebf1f /docs/cqueue_api.md | |
| parent | 7188a160ac084b65de07c26797fd74e29fd8b0b8 (diff) | |
| download | STC-modified-15dcc16cac8f5353d657fe6511eb1a01be347fa0.tar.gz STC-modified-15dcc16cac8f5353d657fe6511eb1a01be347fa0.zip | |
Fixed some const-ness with begin/end methods.
Diffstat (limited to 'docs/cqueue_api.md')
| -rw-r--r-- | docs/cqueue_api.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md index ef01b2c4..4890a4ea 100644 --- a/docs/cqueue_api.md +++ b/docs/cqueue_api.md @@ -40,8 +40,8 @@ void cqueue_X_emplace_n(cqueue_X *self, const cqueue_X_rawval void cqueue_X_pop(cqueue_X* self); -cqueue_X_iter_t cqueue_X_begin(cqueue_X* self); -cqueue_X_iter_t cqueue_X_end(cqueue_X* self); +cqueue_X_iter_t cqueue_X_begin(const cqueue_X* self); +cqueue_X_iter_t cqueue_X_end(const cqueue_X* self); void cqueue_X_next(cqueue_X_iter_t* it); cqueue_X_value_t* cqueue_X_itval(cqueue_X_iter_t it); |
