From 5710bfd9b1d212a72d4ddcc4b0cce2294f17c2fd Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Wed, 12 Jun 2019 12:11:49 +0200 Subject: [PATCH] msvc: disable warning C4003: not enough arguments for function-like macro invocation 'MP__STRINGIZE' --- makefile.msvc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.msvc b/makefile.msvc index e9174684e..d5670566b 100644 --- a/makefile.msvc +++ b/makefile.msvc @@ -14,7 +14,7 @@ PREFIX = c:\devel CFLAGS = /Ox #Compilation flags -LTM_CFLAGS = /nologo /I./ /D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE /D__STDC_WANT_SECURE_LIB__=1 /D_CRT_HAS_CXX17=0 /Wall /wd4146 /wd4127 /wd4710 /wd4711 /wd4820 /WX $(CFLAGS) +LTM_CFLAGS = /nologo /I./ /D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE /D__STDC_WANT_SECURE_LIB__=1 /D_CRT_HAS_CXX17=0 /Wall /wd4146 /wd4127 /wd4710 /wd4711 /wd4820 /wd4003 /WX $(CFLAGS) LTM_LDFLAGS = advapi32.lib #Libraries to be created (this makefile builds only static libraries)