Skip to content
Snippets Groups Projects
Commit 33bfab4c authored by Ben Boeckel's avatar Ben Boeckel Committed by Kitware Robot
Browse files

Merge topic 'intel-ignore-warnings' into paraview/release


173657d5 CTestCustom: ignore noisy warnings from icc

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Acked-by: Cory Quammen's avatarCory Quammen <cory.quammen@kitware.com>
Merge-request: !6411
parents 2577a877 173657d5
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,11 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION
# Qt has some functions marked as `__forceinline` which MSVC refuses to inline.
"[Qq]t.*warning C4714"
"[Qq]t.*note: see declaration of"
# Intel compilers warn about large functions, but we don't usually care.
"remark #11074: Inlining inhibited by limit max-total-size"
# Ignore the suggestion line for more information too.
"remark #11076: To get full report use"
)
set(cdash_show_third_party_warnings "@VTK_ENABLE_CDASH_THIRD_PARTY_WARNINGS@")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment