mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03: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
|
# 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 Carp;
|
||||||
use strict;
|
use strict;
|
||||||
@ -31,7 +31,7 @@ sub new
|
|||||||
prefixincludes => '',
|
prefixincludes => '',
|
||||||
defines => ';',
|
defines => ';',
|
||||||
solution => $solution,
|
solution => $solution,
|
||||||
disablewarnings => '4018;4244;4273;4102;4090',
|
disablewarnings => '4018;4244;4273;4102;4090;4267',
|
||||||
disablelinkerwarnings => '',
|
disablelinkerwarnings => '',
|
||||||
vcver => $solution->{vcver},
|
vcver => $solution->{vcver},
|
||||||
platform => $solution->{platform},
|
platform => $solution->{platform},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user