0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-25 09:58:54 +02:00

clang: -Wno-mismatched-tags

This commit is contained in:
Jason Volk 2016-08-15 20:53:43 -07:00
parent d9abfc3955
commit 096f7b9ff7

View file

@ -238,6 +238,11 @@ AM_COND_IF([GCC],
CHARYBDIS_C_GCC_TRY_FLAGS([-Wsuggest-attribute=format], charybdis_cv_c_gcc_w_suggest_attribute_format)
],[])
AM_COND_IF([CLANG],
[
CHARYBDIS_C_GCC_TRY_FLAGS([-Wno-mismatched-tags], charybdis_cv_c_gcc_w_mismatched_tags)
],[])
])
CPPFLAGS+="$CWARNS"