Browse Source

build: disable C4267 conversion compiler warning

Disable "warning C4267: conversion from 'size_t' to 'int', possible
loss of data".  Many originate from our dependencies and their sheer
number drowns out other, more legitimate warnings.

PR-URL: https://github.com/nodejs/node/pull/11205
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
v6
Ben Noordhuis 8 years ago
parent
commit
97ebdf3bed
  1. 4
      common.gypi

4
common.gypi

@ -188,6 +188,10 @@
'BufferSecurityCheck': 'true', 'BufferSecurityCheck': 'true',
'ExceptionHandling': 0, # /EHsc 'ExceptionHandling': 0, # /EHsc
'SuppressStartupBanner': 'true', 'SuppressStartupBanner': 'true',
# Disable "warning C4267: conversion from 'size_t' to 'int',
# possible loss of data". Many originate from our dependencies
# and their sheer number drowns out other, more legitimate warnings.
'DisableSpecificWarnings': ['4267'],
'WarnAsError': 'false', 'WarnAsError': 'false',
}, },
'VCLibrarianTool': { 'VCLibrarianTool': {

Loading…
Cancel
Save