Disable a Clang warning

Fixes `make develop` with Clang 17.
The warning only triggers on the auto-generated `yynerrs_` in `src/asm/parser.cpp`,
so it's not very useful to us right now.
This commit is contained in:
ISSOtm
2024-03-13 00:04:11 +01:00
parent 846a9411b9
commit b9596890c9

View File

@@ -204,7 +204,7 @@ develop:
-Wstringop-overflow=4 -Wstrict-overflow=5 -Wundef -Wuninitialized -Wunused \
-Wshadow \
-Wformat=2 -Wformat-overflow=2 -Wformat-truncation=1 \
-Wno-format-nonliteral -Wno-strict-overflow \
-Wno-format-nonliteral -Wno-strict-overflow -Wno-unused-but-set-variable \
-Wno-type-limits -Wno-tautological-constant-out-of-range-compare \
-Wvla \
-D_GLIBCXX_ASSERTIONS \