include: Modify UNREFERENCED macros to cast to void.
This commit is contained in:
parent
df51bbf49f
commit
a3b7030ee8
|
@ -1470,9 +1470,9 @@ typedef CONTEXT *PCONTEXT;
|
|||
#define LOCALE_USER_DEFAULT (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
|
||||
#define LOCALE_NEUTRAL (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT))
|
||||
|
||||
#define UNREFERENCED_PARAMETER(u) (u)
|
||||
#define DBG_UNREFERENCED_PARAMETER(u) (u)
|
||||
#define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (u)
|
||||
#define UNREFERENCED_PARAMETER(u) (void)(u)
|
||||
#define DBG_UNREFERENCED_PARAMETER(u) (void)(u)
|
||||
#define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (void)(u)
|
||||
|
||||
#define LANG_NEUTRAL 0x00
|
||||
#define LANG_INVARIANT 0x7f
|
||||
|
|
Loading…
Reference in New Issue