wingo pushed a commit to branch wip-whippet in repository guile. commit 36043468e85bd45852b2bdbb4c22c4c7335cd2d9 Author: Andy Wingo <wi...@igalia.com> AuthorDate: Tue Jul 1 13:00:12 2025 +0200
Mark always-inline functions as maybe-unused --- api/gc-inline.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/gc-inline.h b/api/gc-inline.h index 30eac54f3..eba8c66c7 100644 --- a/api/gc-inline.h +++ b/api/gc-inline.h @@ -1,7 +1,7 @@ #ifndef GC_INLINE_H_ #define GC_INLINE_H_ -#define GC_ALWAYS_INLINE __attribute__((always_inline)) +#define GC_ALWAYS_INLINE __attribute__((always_inline)) __attribute__((unused)) #define GC_NEVER_INLINE __attribute__((noinline)) #endif // GC_INLINE_H_