mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:23:06 +00:00
[CRT:STARTUP] Fix a Clang-Cl warning about GS_ExceptionPointers
"warning: unused variable 'GS_ExceptionPointers' [-Wunused-const-variable]" Missed in CORE-8626 r64704. CORE-14306
This commit is contained in:
parent
b789161199
commit
44023cb7d7
1 changed files with 2 additions and 0 deletions
|
@ -37,12 +37,14 @@ typedef union
|
||||||
FILETIME ft_struct;
|
FILETIME ft_struct;
|
||||||
} FT;
|
} FT;
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
static EXCEPTION_RECORD GS_ExceptionRecord;
|
static EXCEPTION_RECORD GS_ExceptionRecord;
|
||||||
static CONTEXT GS_ContextRecord;
|
static CONTEXT GS_ContextRecord;
|
||||||
|
|
||||||
static const EXCEPTION_POINTERS GS_ExceptionPointers = {
|
static const EXCEPTION_POINTERS GS_ExceptionPointers = {
|
||||||
&GS_ExceptionRecord,&GS_ContextRecord
|
&GS_ExceptionRecord,&GS_ContextRecord
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
DECLSPEC_SELECTANY UINT_PTR __security_cookie = DEFAULT_SECURITY_COOKIE;
|
DECLSPEC_SELECTANY UINT_PTR __security_cookie = DEFAULT_SECURITY_COOKIE;
|
||||||
DECLSPEC_SELECTANY UINT_PTR __security_cookie_complement = ~(DEFAULT_SECURITY_COOKIE);
|
DECLSPEC_SELECTANY UINT_PTR __security_cookie_complement = ~(DEFAULT_SECURITY_COOKIE);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue