g-i: silence 'nested extern' compiler warnings when building scanner binary

We need a nested extern in our init section for the scanner binary
so we can call gst_init to make sure GStreamer types are initialised
(they are not all lazy init via get_type functions, but some are in
exported variables). There doesn't seem to be any other mechanism to
achieve this, so just remove that warning, it's not important at all.
This commit is contained in:
Tim-Philipp Müller 2019-03-23 19:15:48 +00:00
parent 48d7d5846f
commit 6f43461592

View file

@ -118,7 +118,6 @@ warning_flags = [
'-Wformat-security',
'-Wold-style-definition',
'-Waggregate-return',
'-Wnested-externs',
'-Winit-self',
'-Wmissing-include-dirs',
'-Waddress',