mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 08:37:44 +00:00
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.
This commit is contained in:
+1
-1
@@ -242,7 +242,7 @@ ifeq ($(comp),mingw)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(comp),icc)
|
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
|
endif
|
||||||
|
|
||||||
ifeq ($(comp),clang)
|
ifeq ($(comp),clang)
|
||||||
|
|||||||
Reference in New Issue
Block a user