The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

meson: Don't specify warning level manually.

Since we already specify a `warning_level` in the project settings, it
is redundant to manually specify it as compiler parameters.

This patch resolves the following meson warning:
```
meson.build:25: WARNING: Consider using the built-in warning_level option instead of using "-Wall".
meson.build:25: WARNING: Consider using the built-in warning_level option instead of using "-Wextra".
```

-4
-4
meson.build
··· 19 19 add_project_arguments(cc.get_supported_arguments([ 20 20 '-D_XOPEN_SOURCE=700', 21 21 '-pedantic', 22 - '-Wall', 23 - '-Wextra', 24 22 '-Wno-unused-parameter', 25 23 ]), language: 'c') 26 24 27 25 add_project_arguments(cpp.get_supported_arguments([ 28 26 '-D_XOPEN_SOURCE=700', 29 - '-Wall', 30 - '-Wextra', 31 27 '-Wno-unused-parameter', 32 28 '-Wno-deprecated-copy', # Eigen 33 29 ]), language: 'cpp')