From 054d117d257c3c92c4904fcc5c932079d2516007 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sun, 20 Jan 2013 17:24:06 +0100 Subject: [PATCH] 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. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2