diff options
author | Murray Cumming <murrayc@murrayc.com> | 2015-07-31 11:26:11 +0200 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2015-07-31 11:28:24 +0200 |
commit | 26da240ad23e228fad5e4d3433cd79bf0dbc4d8f (patch) | |
tree | be4a35d07a4a60db4d6bfe74553c18e756199307 | |
parent | 72b20e18f209cf961d6a565ed03717a73d2688f7 (diff) |
configure.ac: Add some more warnings for --enable-warnings=fatal.
Not using -Wshadow because that breaks the build:
matrix.cc:28:80: error: declaration of 'y0' shadows a member of 'this' [-Werror=shadow]
Matrix::Matrix(double xx, double yx, double xy, double yy, double x0, double y0)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8dcb8fa..04dbadc 100644 --- a/configure.ac +++ b/configure.ac @@ -67,7 +67,7 @@ MM_ARG_WITH_TAGFILE_DOC([libsigc++-2.0.tag], [sigc++-2.0]) AC_LANG([C++]) MM_ARG_ENABLE_WARNINGS([CAIROMM_WXXFLAGS], [-Wall], - [-pedantic -Wall -Wextra], + [-pedantic -Wall -Wextra -Wformat-security -Wsuggest-override], [SIGCXX]) AC_ARG_ENABLE([tests], |