diff options
| author | Lion Kortlepel <[email protected]> | 2026-01-15 00:35:23 +0100 |
|---|---|---|
| committer | Lion Kortlepel <[email protected]> | 2026-01-15 00:36:10 +0100 |
| commit | abf6368bb7b9ca2f2636e2a56d20b4848dbcf48c (patch) | |
| tree | ecd38f395e5d528e25b0625dc56aecdabf636c98 | |
| parent | 3553e8f85014d2273b50dc2db6b2cc1c5531369b (diff) | |
| download | queue-abf6368bb7b9ca2f2636e2a56d20b4848dbcf48c.tar.zst queue-abf6368bb7b9ca2f2636e2a56d20b4848dbcf48c.zip | |
feat!: fix C89 compliance by removing `inline`
bump to v2.1
| -rw-r--r-- | ls_queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ /* Lion's Standard (LS) type-safe ANSI C queue. * - * Version: 2.0 + * Version: 2.1 * Repo: https://github.com/lionkor/ls_queue * SPDX-License-Identifier: MIT * @@ -101,7 +101,7 @@ size_t read; \ size_t write; \ } name; \ - _ls_QUEUE_IMPL_DETAIL(T, name, cap, static inline) + _ls_QUEUE_IMPL_DETAIL(T, name, cap, static) #define LS_QUEUE_IMPL(T, name, cap) \ _ls_QUEUE_IMPL_DETAIL(T, name, cap, ) |
