1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Disable warning 4090 = different const qualifiers on msvc since it

warns about things that aren't wrong.
This commit is contained in:
Magnus Hagander
2007-07-25 10:51:03 +00:00
parent 430d0829ae
commit dff6797ce5

View File

@ -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.12 2007/06/12 18:31:28 mha Exp $ # $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.13 2007/07/25 10:51:03 mha Exp $
# #
use Carp; use Carp;
use strict; use strict;
@ -30,7 +30,7 @@ sub new
prefixincludes => '', prefixincludes => '',
defines => ';', defines => ';',
solution => $solution, solution => $solution,
disablewarnings => '4018;4244;4273;4102', disablewarnings => '4018;4244;4273;4102;4090',
disablelinkerwarnings => '' disablelinkerwarnings => ''
}; };