mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
[CRT] Fix ARM64 VS2022 debug build (#6899)
__globallocalestatus is missing on VS2022/ARM64 just like on Clang-cl.
Addendum to 861360c65f
. CORE-14042 CORE-18200
This commit is contained in:
parent
503e68f2c9
commit
f22704ad4f
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ pre_c_init (void)
|
||||||
{
|
{
|
||||||
__setusermatherr (_matherr);
|
__setusermatherr (_matherr);
|
||||||
}
|
}
|
||||||
#ifndef __clang__ /* FIXME: CORE-14042 */
|
#if !defined(__clang__) && (!defined(_M_ARM64) || (_MSC_VER < 1930)) /* FIXME: CORE-14042 */
|
||||||
if (__globallocalestatus == -1)
|
if (__globallocalestatus == -1)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue