Tweak UNREFERENCED_CONST_PARAMETER

git-svn-id: https://svn.eduke32.com/eduke32@6401 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2017-07-29 20:39:50 +00:00
parent 0f54975751
commit 33c138fdf9

View file

@ -82,7 +82,7 @@
#ifndef UNREFERENCED_CONST_PARAMETER #ifndef UNREFERENCED_CONST_PARAMETER
# ifdef _MSC_VER # ifdef _MSC_VER
# define UNREFERENCED_CONST_PARAMETER(x) (x) # define UNREFERENCED_CONST_PARAMETER(x) ((void)(x))
# else # else
# define UNREFERENCED_CONST_PARAMETER(x) # define UNREFERENCED_CONST_PARAMETER(x)
# endif # endif