From: Marco Costalba Date: Sun, 20 Jan 2013 16:24:06 +0000 (+0100) Subject: Fix an idiotic icc warning X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=054d117d257c3c92c4904fcc5c932079d2516007;hp=62b32a47378fa84108bb8aee2192ba66c87c3280 Fix an idiotic icc warning Intel Compiler has 'invented' this pearl: warning #1476: field uses tail padding of a base class Just becuase we have subclassed MainThread and added the field 'bool thinking'. Pure nosense. Silence the warning. No functional change. --- diff --git a/src/Makefile b/src/Makefile index ee4374d8..ea00e728 100644 --- a/src/Makefile +++ b/src/Makefile @@ -242,7 +242,7 @@ ifeq ($(comp),mingw) endif ifeq ($(comp),icc) - CXXFLAGS += -wd383,981,1418,1419,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi + CXXFLAGS += -wd383,981,1418,1419,1476,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi endif ifeq ($(comp),clang)