Silence compiler warning about size of size_t being larger than the result

variable it's stored in. We know this can never happen. Per discussion.
This commit is contained in:
Magnus Hagander 2010-01-02 15:18:42 +00:00
parent 8491998d3d
commit 8292079ad3
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ package Project;
#
# Package that encapsulates a Visual C++ project file generation
#
# $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.23 2010/01/01 17:34:25 mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.24 2010/01/02 15:18:42 mha Exp $
#
use Carp;
use strict;
@ -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},