diff --git a/openmp/runtime/src/thirdparty/ittnotify/disable_warnings.h b/openmp/runtime/src/thirdparty/ittnotify/disable_warnings.h --- a/openmp/runtime/src/thirdparty/ittnotify/disable_warnings.h +++ b/openmp/runtime/src/thirdparty/ittnotify/disable_warnings.h @@ -11,6 +11,8 @@ #if ITT_PLATFORM == ITT_PLATFORM_WIN +#if defined _MSC_VER + #pragma warning(disable : 593) /* parameter "XXXX" was set but never used */ #pragma warning(disable : 344) /* typedef name has already been declared (with \ same type) */ @@ -19,6 +21,8 @@ #pragma warning( \ disable : 4306) /* conversion from '?' to '?' of greater size */ +#endif /* _MSC_VER */ + #endif /* ITT_PLATFORM==ITT_PLATFORM_WIN */ #if defined __INTEL_COMPILER