From 119ba505324778a6050ff86a7c76f7e10b8b9d56 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 27 Feb 2014 00:01:23 +0000 Subject: [PATCH] Disable another warning for Intel ICC that we trigger thousands of times and that is unavoidable. git-svn-id: https://svn.dealii.org/trunk@32562 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/setup_compiler_flags_intel.cmake | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deal.II/cmake/setup_compiler_flags_intel.cmake b/deal.II/cmake/setup_compiler_flags_intel.cmake index d3357cb8c5..173d159612 100644 --- a/deal.II/cmake/setup_compiler_flags_intel.cmake +++ b/deal.II/cmake/setup_compiler_flags_intel.cmake @@ -1,7 +1,7 @@ ## --------------------------------------------------------------------- ## $Id$ ## -## Copyright (C) 2012 - 2013 by the deal.II authors +## Copyright (C) 2012 - 2014 by the deal.II authors ## ## This file is part of the deal.II library. ## @@ -83,6 +83,8 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-w2") # (happens in boost) # -w1478 deprecation warning # -w1572 floating-point equality and inequality comparisons are unreliable +# -w2259 non-pointer conversion from "double" to "float" may +# lose significant bits # -w2536 type qualifiers are meaningless here # ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd68") @@ -96,6 +98,7 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd981") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd1418") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd1478") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd1572") +ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd2259") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd2536") -- 2.39.5