mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Disable warning 4090 = different const qualifiers on msvc since it
warns about things that aren't wrong.
This commit is contained in:
parent
430d0829ae
commit
dff6797ce5
@ -3,7 +3,7 @@ package Project;
|
||||
#
|
||||
# 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 strict;
|
||||
@ -30,7 +30,7 @@ sub new
|
||||
prefixincludes => '',
|
||||
defines => ';',
|
||||
solution => $solution,
|
||||
disablewarnings => '4018;4244;4273;4102',
|
||||
disablewarnings => '4018;4244;4273;4102;4090',
|
||||
disablelinkerwarnings => ''
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user