From 61c03b9d22de0c1ccf0c60af4e223775d4b3f7cc Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sat, 25 Dec 2010 08:59:47 +0100 Subject: [PATCH 1/1] 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 --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2