diff options
author | rubidium <rubidium@openttd.org> | 2009-11-12 21:07:55 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-12 21:07:55 +0000 |
commit | 2b39e239a60a812429d3506ee8fd9a16900e44b5 (patch) | |
tree | a1c8064f7e783e4fb05312b29e4d6fe09c7ebf60 | |
parent | b0f18a27fb2afed8b5c4149cffc5de11a5ca78e8 (diff) | |
download | openttd-2b39e239a60a812429d3506ee8fd9a16900e44b5.tar.xz |
(svn r18055) -Fix (r18045): ICC warning
-rw-r--r-- | config.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib index 2a4114d6f..ddab1fbd7 100644 --- a/config.lib +++ b/config.lib @@ -1077,7 +1077,7 @@ make_compiler_cflags() { if [ $cc_version -ge 110 ]; then # vec report defaults to telling where it did loop vectorisation, which is not very important - flags="$flags -vec-report=0" + flags="$flags -vec-report=0 -wd873" # Use c++0x mode so static_assert() is available cxxflags="$cxxflags -std=c++0x" |