mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[XDK] Even the DBG_UNREFERENCED_PARAMETER() should use (void)P. Addendum to 46ca069e
.
This commit is contained in:
parent
46ca069e42
commit
9aa73da948
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@
|
|||
|
||||
/* Use to silence unused variable warnings when it is intentional */
|
||||
#define UNREFERENCED_PARAMETER(P) ((void)(P))
|
||||
#define DBG_UNREFERENCED_PARAMETER(P) {(P)=(P);}
|
||||
#define DBG_UNREFERENCED_PARAMETER(P) ((void)(P))
|
||||
#define DBG_UNREFERENCED_LOCAL_VARIABLE(L) ((void)(L))
|
||||
|
||||
/* Void Pointers */
|
||||
|
|
Loading…
Reference in a new issue