diff options
author | Tom Tromey <tromey@redhat.com> | 2013-07-01 19:48:05 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-07-01 19:48:05 +0000 |
commit | 2945b8076ce1f332cd9b9ddb7b8784283132d39b (patch) | |
tree | 0a8d8b6623a5bfb8e41c520a5c7f0606102fdb41 /gdb/configure.ac | |
parent | 0ca92f2e81cd0b9bca0bd2a4673c53b8d151609a (diff) | |
download | gdb-2945b8076ce1f332cd9b9ddb7b8784283132d39b.zip gdb-2945b8076ce1f332cd9b9ddb7b8784283132d39b.tar.gz gdb-2945b8076ce1f332cd9b9ddb7b8784283132d39b.tar.bz2 |
add -Wmissing-parameter-type
This adds -Wmissing-parameter-type to gdb's list of warnings.
This one doesn't happen to trigger for a --enable-targets=all build on
x86-64 Fedora 18.
* configure.ac (build_warnings): Add -Wmissing-parameter-type.
* configure: Rebuild.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index e378bde..b63faec 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -1940,7 +1940,7 @@ build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \ -Wpointer-sign \ -Wno-unused -Wunused-value -Wunused-function \ -Wno-switch -Wno-char-subscripts -Wmissing-prototypes \ --Wdeclaration-after-statement -Wempty-body" +-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type" # Enable -Wno-format by default when using gcc on mingw since many # GCC versions complain about %I64. |