Proper SXUNUSED() macro implementation.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-06-16 00:10:27 +02:00
부모 fffce10ba8
커밋 1a91fedb1f
로그인 계정: belliash
GPG 키 ID: 4E829243E0CFE6B4

파일 보기

@ -143,7 +143,7 @@ typedef sxi32(*ProcRawStrCmp)(const SyString *, const SyString *);
#define SX_ADDR(PTR) ((sxptr)PTR)
#define SX_ARRAYSIZE(X) (sizeof(X)/sizeof(X[0]))
#define SXUNUSED(P) (P = 0)
#define SXUNUSED(P) ((void)P)
#define SX_EMPTY(PTR) (PTR == 0)
#define SX_EMPTY_STR(STR) (STR == 0 || STR[0] == 0 )
typedef struct SyMemBackend SyMemBackend;