projects
/
users
/
simon
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c1a9f0
)
Disable warning 4090 = different const qualifiers on msvc since it
author
Magnus Hagander
<magnus@hagander.net>
Wed, 25 Jul 2007 10:51:03 +0000
(10:51 +0000)
committer
Magnus Hagander
<magnus@hagander.net>
Wed, 25 Jul 2007 10:51:03 +0000
(10:51 +0000)
warns about things that aren't wrong.
src/tools/msvc/Project.pm
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/msvc/Project.pm
b/src/tools/msvc/Project.pm
index 640b230a963e85d9239ae6188aa3abe3f52cd600..23a64149b127fc60c2a447813c3571816efbf60d 100644
(file)
--- a/
src/tools/msvc/Project.pm
+++ b/
src/tools/msvc/Project.pm
@@
-30,7
+30,7
@@
sub new
prefixincludes => '',
defines => ';',
solution => $solution,
- disablewarnings => '4018;4244;4273;4102',
+ disablewarnings => '4018;4244;4273;4102
;4090
',
disablelinkerwarnings => ''
};