Commit 6c650cf1 authored by whesse@chromium.org's avatar whesse@chromium.org

Disable MSVC warning that default array initializers now work properly.

Review URL: http://codereview.chromium.org/6272017

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6454 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 2444e3f2
......@@ -330,7 +330,7 @@ V8_EXTRA_FLAGS = {
},
'msvc': {
'all': {
'WARNINGFLAGS': ['/W3', '/WX', '/wd4355', '/wd4800']
'WARNINGFLAGS': ['/W3', '/WX', '/wd4351', '/wd4355', '/wd4800']
},
'library:shared': {
'CPPDEFINES': ['BUILDING_V8_SHARED'],
......
......@@ -749,8 +749,7 @@
'sources': [
'../../src/platform-win32.cc',
],
# 4355, 4800 came from common.vsprops
'msvs_disabled_warnings': [4355, 4800],
'msvs_disabled_warnings': [4351, 4355, 4800],
'link_settings': {
'libraries': [ '-lwinmm.lib' ],
},
......
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