From: Daniel Arndt Date: Thu, 19 Jul 2018 23:56:33 +0000 (+0200) Subject: Ignore spurious w2651 ICC warning X-Git-Tag: v9.1.0-rc1~906^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b30df9626263e7f2ae0169240d21ec0c9b1f0b1;p=dealii.git Ignore spurious w2651 ICC warning --- diff --git a/cmake/setup_compiler_flags_intel.cmake b/cmake/setup_compiler_flags_intel.cmake index 0e0e01c898..67166ea223 100644 --- a/cmake/setup_compiler_flags_intel.cmake +++ b/cmake/setup_compiler_flags_intel.cmake @@ -104,6 +104,8 @@ ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-diag-disable=remark") # -w2259 non-pointer conversion from "double" to "float" may # lose significant bits # -w2536 type qualifiers are meaningless here +# -w2651 attribute does not apply to any entity +# spurious for [[deprecated]] # -w3415 the "always_inline" attribute is ignored on non-inline functions # incorrectly triggered by inline functions in tensor.h # -w15531 A portion of SIMD loop is serialized @@ -124,6 +126,7 @@ 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") +ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd2651") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd3415") ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-wd15531")