From c6da211585890db6d3a4e75bdb6d66fa700bd10e Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 27 Apr 2015 03:19:10 +0000 Subject: [PATCH] disable one more version of signed/unsigned mismatch warning in msvc --- Jamfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jamfile b/Jamfile index 84fc70075..e7a5daf99 100755 --- a/Jamfile +++ b/Jamfile @@ -273,6 +273,7 @@ rule warnings ( properties * ) # disable warning C4389: signed/unsigned mismatch result += /wd4389 ; result += /wd4245 ; + result += /wd4018 ; # disable warning C4244: 'argument' : conversion from 'int' to 'unsigned short', possible loss of data result += /wd4244 ; }