Commit 8292079a authored by Magnus Hagander's avatar Magnus Hagander

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.
parent 8491998d
......@@ -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},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment