From: Marco Costalba Date: Sat, 25 Dec 2010 07:59:47 +0000 (+0100) Subject: Ignore two braindamaged remarks under icc X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=61c03b9d22de0c1ccf0c60af4e223775d4b3f7cc;hp=dee878082960be198fdb1493940b3d8a2be0bd58 Ignore two braindamaged remarks under icc Remark 1418: external function definition with no prior declaration and Remark 1419: external declaration in primary source file Can be safely ignored because are pure idiocy. No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/Makefile b/src/Makefile index 1d258a44..7eef3416 100644 --- a/src/Makefile +++ b/src/Makefile @@ -238,7 +238,7 @@ ifeq ($(comp),mingw) endif ifeq ($(comp),icc) - CXXFLAGS += -wd383,981,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi + CXXFLAGS += -wd383,981,1418,1419,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi endif ifeq ($(os),osx)