1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-03 16:13:22 +08:00

Fix compile for old windows SDK's

This commit is contained in:
GAMMACASE 2023-09-27 01:48:21 +03:00 committed by Nicholas Hastings
parent 0185e8aded
commit 0c956066ec

View File

@ -78,6 +78,14 @@ inline void *ReallocUnattributed( void *pMem, size_t nSize )
#if _MSC_VER >= 1400
#if _MSC_VER >= 1900
#ifndef _CRT_NOEXCEPT
#ifdef __cplusplus
#define _CRT_NOEXCEPT noexcept
#else
#define _CRT_NOEXCEPT
#endif
#endif
#define _CRTNOALIAS
#endif