diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-09-30 11:22:55 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-10-10 10:03:17 +0200 |
| commit | 54614939ff8e65d0831a8b64e575c03215a183aa (patch) | |
| tree | 4310608f5c31df9e2aba2ae108db1161e9b029e2 /array.h | |
| parent | 83edfb38432ee7c4bef426c9e29fb8c8c277706d (diff) | |
| download | vis-54614939ff8e65d0831a8b64e575c03215a183aa.tar.gz vis-54614939ff8e65d0831a8b64e575c03215a183aa.tar.xz | |
array: mark array_peek argument as const
Diffstat (limited to 'array.h')
| -rw-r--r-- | array.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,6 +128,6 @@ void *array_pop(Array*); * .. warning:: The same ownership rules as for ``array_get`` apply. * @endrst */ -void *array_peek(Array*); +void *array_peek(const Array*); #endif |
