diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-12-15 07:58:00 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-12-15 07:58:00 +0000 |
commit | 41b76e98a9f1e85d39da9f4acc9be39707581d28 (patch) | |
tree | 5ef735c4b7b18f0320e3936d7465f20a0d522207 /configure.ac | |
parent | f5183827dc37e2da8d78e364dd700049461ad8ef (diff) | |
download | ruby-41b76e98a9f1e85d39da9f4acc9be39707581d28.tar.gz |
suppress icc warnings
* subscript out of range
* enumerated type mixed with another type
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f23a77e1d8..4c250d4d75 100644 --- a/configure.ac +++ b/configure.ac @@ -752,7 +752,7 @@ AS_IF([test "$GCC:${warnflags+set}:no" = yes::no], [ particular_werror_flags=no ]) for wflag in -Wno-unused-parameter -Wno-parentheses -Wno-long-long \ - -diag-disable=2259 \ + -diag-disable=175,188,2259 \ -Wno-missing-field-initializers \ -Wno-tautological-compare \ -Wno-parentheses-equality \ |