build: remove unnecessary warning ignore

This shouldn't be needed anymore.
This commit is contained in:
Christian Hergert
2023-05-25 15:17:46 -07:00
parent ff41633abc
commit 19b957f4ff

View File

@ -177,13 +177,6 @@ test_c_args = [
'-Werror=undef',
]
# Until GLib is fixed with regards to volatile type registration
if cc.get_id() == 'clang'
test_c_args += ['-Wno-incompatible-pointer-types']
else
test_c_args += ['-Werror=incompatible-pointer-types']
endif
foreach arg: test_c_args
if cc.has_multi_arguments(arg)
global_c_args += arg