mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +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:
parent
62b32a4737
commit
054d117d25
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue