mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 03:57:45 +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
|
||||
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user