Commit c1e25378 authored by Max Kellermann's avatar Max Kellermann

meson.build: add comment for clang-only warning options

parent 8c690fb7
...@@ -68,15 +68,18 @@ test_cxxflags = test_common_flags + [ ...@@ -68,15 +68,18 @@ test_cxxflags = test_common_flags + [
'-Wshadow', '-Wshadow',
'-Wcast-qual', '-Wcast-qual',
'-Wwrite-strings', '-Wwrite-strings',
'-Wcomma',
'-Wextra-semi', '-Wextra-semi',
'-Wunused',
'-Wno-non-virtual-dtor',
# clang specific warning options:
'-Wcomma',
'-Wheader-hygiene', '-Wheader-hygiene',
'-Winconsistent-missing-destructor-override', '-Winconsistent-missing-destructor-override',
'-Wunreachable-code-break', '-Wunreachable-code-break',
'-Wunused',
'-Wused-but-marked-unused', '-Wused-but-marked-unused',
'-Wno-non-virtual-dtor',
] ]
test_cflags = test_common_flags + [ test_cflags = test_common_flags + [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment