Bug 1229587 part 1 - Disable C4464 warning newly added in VS2015u1. r=keeler

This commit is contained in:
Xidorn Quan 2015-12-03 09:29:42 +11:00
parent 15b425ebe6
commit 40b3b8be85
2 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@ if CONFIG['_MSC_VER']:
# -Wall with Visual C++ enables too many problematic warnings
CXXFLAGS += [
'-wd4355', # 'this' used in base member initializer list
'-wd4464', # relative include path contains '..'
'-wd4480', # nonstandard extension used: specifying underlying type for
# enum 'enum'
'-wd4481', # nonstandard extension used: override specifier 'keyword'

View File

@ -17,6 +17,7 @@ elif CONFIG['_MSC_VER']:
'-Wall',
'-wd4464', # relative include path contains '..'
'-wd4514', # 'function': unreferenced inline function has been removed
'-wd4668', # warning C4668: 'X' is not defined as a preprocessor macro,
# replacing with '0' for '#if/#elif'.