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 + [
'-Wshadow',
'-Wcast-qual',
'-Wwrite-strings',
'-Wcomma',
'-Wextra-semi',
'-Wunused',
'-Wno-non-virtual-dtor',
# clang specific warning options:
'-Wcomma',
'-Wheader-hygiene',
'-Winconsistent-missing-destructor-override',
'-Wunreachable-code-break',
'-Wunused',
'-Wused-but-marked-unused',
'-Wno-non-virtual-dtor',
]
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