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:
parent
93de151936
commit
e890481254
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user