summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com>2019-11-18 15:21:37 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2019-11-18 22:21:36 +0200
commit83b4e981c4dd8b8ea521a6150a34636d10a67211 (patch)
tree3ac84e307e6a2589073a7542a0d7127738f09576 /.github
parent0435691e83fb7172e2a9635d2eb32d5521089916 (diff)
downloadmeson-83b4e981c4dd8b8ea521a6150a34636d10a67211.tar.gz
Use strict function prototypes
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/unusedargs_missingreturn.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/unusedargs_missingreturn.yml b/.github/workflows/unusedargs_missingreturn.yml
index 03802dc6b..a75a6d5ec 100644
--- a/.github/workflows/unusedargs_missingreturn.yml
+++ b/.github/workflows/unusedargs_missingreturn.yml
@@ -1,5 +1,8 @@
name: UnusedMissingReturn
-# this workflow checks for usused input arguments or missing return values in test cases.
+# this workflow checks for
+# * unused input arguments
+# * missing return values
+# * strict prototypes
# some users have default configs that will needlessly fail Meson self-tests due to these syntax.
on:
@@ -33,6 +36,6 @@ jobs:
sudo apt install -yq --no-install-recommends g++ gfortran ninja-build
- run: python run_project_tests.py --only cmake common fortran platform-linux
env:
- CFLAGS: "-Werror=unused-parameter -Werror=return-type"
+ CFLAGS: "-Werror=unused-parameter -Werror=return-type -Werror=strict-prototypes"
CPPFLAGS: "-Werror=unused-parameter -Werror=return-type"
FFLAGS: "-fimplicit-none"