mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1229587 part 1 - Disable C4464 warning newly added in VS2015u1. r=keeler
--HG-- extra : source : 1c79d789b2de950e8024d857f9315ea362141969
This commit is contained in:
parent
c7aea57412
commit
8cd346c251
@ -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'
|
||||
|
@ -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'.
|
||||
|
Loading…
Reference in New Issue
Block a user