Silence compiler warning about size of size_t being larger than the result
authorMagnus Hagander <[email protected]>
Sat, 2 Jan 2010 15:18:42 +0000 (15:18 +0000)
committerMagnus Hagander <[email protected]>
Sat, 2 Jan 2010 15:18:42 +0000 (15:18 +0000)
variable it's stored in. We know this can never happen. Per discussion.

src/tools/msvc/Project.pm

index f2d85c984741eae94d77b5c3212ccbbb97539739..497a2a76624aebebd226fc1ff3c93ecdd0197c51 100644 (file)
@@ -31,7 +31,7 @@ sub new
         prefixincludes  => '',
         defines         => ';',
         solution        => $solution,
-        disablewarnings => '4018;4244;4273;4102;4090',
+        disablewarnings => '4018;4244;4273;4102;4090;4267',
         disablelinkerwarnings => '',
         vcver           => $solution->{vcver},
         platform        => $solution->{platform},