lib/fmt/meson.build: remove obsolete clang 14 workaround

Android NDK r27 has clang 18 and I don't feel like supporting clang 14.
This commit is contained in:
Max Kellermann 2024-07-29 22:11:05 +02:00
parent 5726d9f06a
commit 323517753d
1 changed files with 0 additions and 8 deletions

View File

@ -1,13 +1,5 @@
libfmt = dependency('fmt', version: '>= 9', fallback: ['fmt', 'fmt_dep'])
if compiler.get_id() == 'clang' and compiler.version().version_compare('<15')
libfmt = declare_dependency(
dependencies: libfmt,
# suppress bogus clang 14 warning (the version in Android NDK r25b)
compile_args: ['-Wno-unused-local-typedef'],
)
endif
fmt = static_library(
'fmt',
'ExceptionFormatter.cxx',