mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 00:20:08 +01:00
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>
This commit is contained in:
parent
ca4b2f6154
commit
4bb61553f0
|
|
@ -186,6 +186,10 @@
|
|||
'BufferSecurityCheck': 'true',
|
||||
'ExceptionHandling': 0, # /EHsc
|
||||
'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',
|
||||
},
|
||||
'VCLibrarianTool': {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user