mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1229587 part 1 - Disable C4464 warning newly added in VS2015u1. r=keeler
This commit is contained in:
parent
15b425ebe6
commit
40b3b8be85
@ -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