mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
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:
parent
8491998d3d
commit
8292079ad3
@ -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},
|
||||
|
Loading…
Reference in New Issue
Block a user