* include/freetype/internal/compiler-macros.h (FALL_THROUGH): Update.

This follows

  https://lists.gnu.org/archive/html/bug-gnulib/2023-02/msg00200.html
This commit is contained in:
Werner Lemberg 2023-03-01 06:36:59 +01:00
parent 638df2fe32
commit d874ffa96c
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ FT_BEGIN_HEADER
# elif ( defined( __GNUC__ ) && __GNUC__ >= 7 ) || \
( defined( __clang__ ) && \
( defined( __apple_build_version__ ) \
? __apple_build_version__ >= 14000000 \
? __apple_build_version__ >= 12000000 \
: __clang_major__ >= 10 ) )
# define FALL_THROUGH __attribute__(( __fallthrough__ ))
# else