From e13be957503162b3a19fcd4c94c94ad28f071281 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 23 Feb 2026 07:30:25 +0100 Subject: Silence warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- libar2_encode_base64.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libar2_encode_base64.c b/libar2_encode_base64.c index f9507e9..bcaba40 100644 --- a/libar2_encode_base64.c +++ b/libar2_encode_base64.c @@ -3,6 +3,11 @@ #define ALPHABET "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" +#if defined(__GNUC__) && !defined(__clang__) +# if __GNUC__ >= 8 +__attribute__((__nonstring__)) +# endif +#endif static char lut[256] = ALPHABET ALPHABET ALPHABET ALPHABET; #define O1(I1, I2, I3) ((I1) >> 2) -- cgit v1.2.3-70-g09d2