From cbdc26447ba5f0dd299018113e36b35f41055945 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 5 Mar 2014 15:09:09 +0000 Subject: [PATCH] Disable another ICC warning. git-svn-id: https://svn.dealii.org/trunk@32614 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/setup_compiler_flags_intel.cmake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deal.II/cmake/setup_compiler_flags_intel.cmake b/deal.II/cmake/setup_compiler_flags_intel.cmake index fb2063af66..33f19fc8fc 100644 --- a/deal.II/cmake/setup_compiler_flags_intel.cmake +++ b/deal.II/cmake/setup_compiler_flags_intel.cmake @@ -71,6 +71,10 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-w2") # friend struct Implementation; # };) # -w177 declared but not referenced +# -w191 type qualifier is meaningless on cast type +# Warnings from this warn about code like this: +# static_cast(p) +# There are many places in boost that do this kind of stuff # -w193 zero used for undefined preprocessing identifier "..." # This happens when using undefined preprocessor names in # conditions such as @@ -101,6 +105,7 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd68") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd135") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd175") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd177") +ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd191") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd193") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd279") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd327") -- 2.39.5