From 3613a75914aca8efcdd4a163079ad6c565fc0b9d Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Mon, 18 Oct 2010 10:45:38 -0400 Subject: [PATCH] install: disabled warning 4711 nfs_install was failing to build in 'free' configurations because of warning 4711: function 'foo' selected for automatic inline expansion Signed-off-by: Casey Bodley --- install/sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/sources b/install/sources index 041ce5b..d5bc6c2 100644 --- a/install/sources +++ b/install/sources @@ -12,4 +12,4 @@ as well as the following warnings: 4100 - unused function call arguments (we have lots of stubs) 4127 - constant conditional (I like to use if(0) or if(1)) !ENDIF -MSC_WARNING_LEVEL=/Wall /wd4668 /wd4619 /wd4820 /wd4255 /wd4100 /wd4127 /wd4201 /wd4214 +MSC_WARNING_LEVEL=/Wall /wd4668 /wd4619 /wd4820 /wd4255 /wd4100 /wd4127 /wd4201 /wd4214 /wd4711