1
0
mirror of https://github.com/microsoft/DirectXMath synced 2024-11-09 14:10:09 +00:00

Fixed warning when buliding with Intel C++ Compiler

This commit is contained in:
Chuck Walbourn 2018-03-19 11:59:40 -07:00
parent 93de151936
commit e890481254

View File

@ -2309,7 +2309,7 @@ namespace Internal
}
};
#if !defined(_XM_NO_INTRINSICS_) && !defined(__clang__)
#if !defined(_XM_NO_INTRINSICS_) && !defined(__clang__) && !defined(__INTEL_COMPILER)
#pragma float_control(push)
#pragma float_control(precise, on)
#endif
@ -2358,7 +2358,7 @@ inline XMVECTOR XM_CALLCONV XMVectorRound
#endif
}
#if !defined(_XM_NO_INTRINSICS_) && !defined(__clang__)
#if !defined(_XM_NO_INTRINSICS_) && !defined(__clang__) && !defined(__INTEL_COMPILER)
#pragma float_control(pop)
#endif