From 33c138fdf93aaaba76cdc35510776d6acf806ebe Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Sat, 29 Jul 2017 20:39:50 +0000 Subject: [PATCH] Tweak UNREFERENCED_CONST_PARAMETER git-svn-id: https://svn.eduke32.com/eduke32@6401 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/build/include/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/build/include/compat.h b/source/build/include/compat.h index c93790490..84cd37779 100644 --- a/source/build/include/compat.h +++ b/source/build/include/compat.h @@ -82,7 +82,7 @@ #ifndef UNREFERENCED_CONST_PARAMETER # ifdef _MSC_VER -# define UNREFERENCED_CONST_PARAMETER(x) (x) +# define UNREFERENCED_CONST_PARAMETER(x) ((void)(x)) # else # define UNREFERENCED_CONST_PARAMETER(x) # endif