[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:
Serge Gautherie 2018-02-10 06:39:28 +01:00 committed by Thomas Faber
parent b789161199
commit 44023cb7d7
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -37,12 +37,14 @@ typedef union
FILETIME ft_struct;
} FT;
#ifndef _MSC_VER
static EXCEPTION_RECORD GS_ExceptionRecord;
static CONTEXT GS_ContextRecord;
static const EXCEPTION_POINTERS GS_ExceptionPointers = {
&GS_ExceptionRecord,&GS_ContextRecord
};
#endif
DECLSPEC_SELECTANY UINT_PTR __security_cookie = DEFAULT_SECURITY_COOKIE;
DECLSPEC_SELECTANY UINT_PTR __security_cookie_complement = ~(DEFAULT_SECURITY_COOKIE);