From abf6368bb7b9ca2f2636e2a56d20b4848dbcf48c Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 15 Jan 2026 00:35:23 +0100 Subject: feat!: fix C89 compliance by removing `inline` bump to v2.1 --- ls_queue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ls_queue.h b/ls_queue.h index e9582d7..0c8dcac 100644 --- a/ls_queue.h +++ b/ls_queue.h @@ -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, ) -- cgit